Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


if we create a file, in that 10 rows(means 1,2,....9,10
like). i want 7 row exactly, which command use in unix?
plz send this question.

Answers were Sorted based on User's Feedback



if we create a file, in that 10 rows(means 1,2,....9,10 like). i want 7 row exactly, which command..

Answer / thomas k

please try this. it will work.
head -7 <filename> | tail -1

Is This Answer Correct ?    42 Yes 8 No

if we create a file, in that 10 rows(means 1,2,....9,10 like). i want 7 row exactly, which command..

Answer / srinu gadipudi

Just try this command
awk 'NR==7{print}' fiename

Is This Answer Correct ?    20 Yes 3 No

if we create a file, in that 10 rows(means 1,2,....9,10 like). i want 7 row exactly, which command..

Answer / kshitij

sed -n 7p <filename>

Is This Answer Correct ?    10 Yes 0 No

if we create a file, in that 10 rows(means 1,2,....9,10 like). i want 7 row exactly, which command..

Answer / ramesh

head -7 <file name>|tail -1

Is This Answer Correct ?    10 Yes 2 No

if we create a file, in that 10 rows(means 1,2,....9,10 like). i want 7 row exactly, which command..

Answer / kantha

Hi, If you want to display 7th line from the file, simple
way is,

$head -7 <filename>| tail -1

Thanks
Kantha

Is This Answer Correct ?    7 Yes 0 No

if we create a file, in that 10 rows(means 1,2,....9,10 like). i want 7 row exactly, which command..

Answer / isha

Put the command in Present working dir

head -7 <filename>

Is This Answer Correct ?    16 Yes 10 No

if we create a file, in that 10 rows(means 1,2,....9,10 like). i want 7 row exactly, which command..

Answer / prasad

hi isha,

this is prasad, head command displays first n lines from
the file

head -7 <filename> it displays first 7 lines, i want exact
7 line.


thanku for send this question isha.

Is This Answer Correct ?    7 Yes 4 No

if we create a file, in that 10 rows(means 1,2,....9,10 like). i want 7 row exactly, which command..

Answer / deshdeep saxena

awk 'NR==7{print}' filename will give you the seventh line
as output
awk 'NR<=7[print]' filename will give you from 1st line to
the seventh line :-)

Is This Answer Correct ?    4 Yes 1 No

if we create a file, in that 10 rows(means 1,2,....9,10 like). i want 7 row exactly, which command..

Answer / murthy

Hi,

Try with the below command

sed -n '7p' <file name>

Is This Answer Correct ?    1 Yes 0 No

if we create a file, in that 10 rows(means 1,2,....9,10 like). i want 7 row exactly, which command..

Answer / chinmayee

head -7 filename |tail +7

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More Unix Commands Interview Questions

What is an Environment Variable?

4 Answers   CTS,


the difference between a soft link and a hard link?

6 Answers  


What is the general format of unix command syntax?

2 Answers  


What is the difference between udp and tcp?

2 Answers   HCL, TCS,


What is difference between grep and find command in unix?

0 Answers  


What is Unix, and how does it differ from other operating systems?

2 Answers  


when we installing aix os the ssh installed default?

2 Answers  


What is the unix command to confirm a remote host is alive or not?

0 Answers  


what are the differences between CUI and GUI interfaces?

52 Answers   College School Exams Tests, HCL, HP, IBM, IBMR, NIIT, Talco, Wipro,


what is the difference between "cron" command and "at" command?

5 Answers  


What is the syntax of grep command and what is its use?

6 Answers  


How to setup Disk space as well as memory in solaris10?

4 Answers  


Categories