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 / manu

if you want 1 to 7 row then
head -7 filename
if you want only 7th row exactly then
head -7 filename|tail -1
or
tail +7 filename|head -1
or
cat -n filename|grep '^7' filename

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 / sivaprasad

hi, this is sivaprasad from school of IT.

If you want exactly 7 line u can use sed command as follows

$sed -n '7,7p' filename

ok.

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 / niranjan

To display first 7 lines of file:-

1) head -7 filename

2) cat filename|head -7



To display only 7th line of file:-

1) head -7 filename|tail -1

2) cat filename|head -7|tail -1

3) tail +7 filename|head -1

choice is ur's..Which one u feel looks gud...:):):)

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 / anandthks

head -7 <filename>| tail -1

Is This Answer Correct ?    0 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 / hari

hai this Hari

try this

$sed -n '1,7p' <filename>

Is This Answer Correct ?    0 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 / hari

$tail 7+ filename|head -1

Is This Answer Correct ?    0 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 / srinivas bolusupati

sed '7d' fileName.txt

Is This Answer Correct ?    0 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 / krishna reddy

sed -n '7p' <filename>

or
head -8 <filename>|tail -1

Is This Answer Correct ?    0 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 / manikandant

sed -n '5p' filename

Is This Answer Correct ?    2 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 / sharda mishra

sen -n '7,7p' file name

Is This Answer Correct ?    0 Yes 1 No

Post New Answer

More Unix Commands Interview Questions

When i run a programm of orphan process. Instead of getting child's parent (ppid)=1 ..i get 1400 and it varies as per system. How can i findthe right soluion??? My pgm: #include<stdlib.h> # include <stdio.h> int main() { int pid; pid=fork(); if(pid < 0) {exit(-1);} else if(pid==0) { printf("Child Process is Sleeping ..."); sleep(10); printf("Orphan Child's Parent ID : %u ",getppid()); } else { printf("Parent Process Completed ... %u ",getpid()); exit(0); } return 0; } Output:

0 Answers  


How do you execute a UNIX command in the background?

6 Answers  


How can we "forked" process in UNIX? How then recognize in any of the branches we?

2 Answers   NIIT,


What will the following command do?

0 Answers  


describe the escaping sequence characteres in unix

1 Answers  


to list a particular line in the file

5 Answers  


Which command is used to create a directory?

0 Answers  


What is the difference between a hard link and a soft link in Unix?

1 Answers  


How to copy multiple files and directories into some other directory?

4 Answers  


what is the command to find out the difference between files and folders?

6 Answers  


What are grep patterns?

0 Answers  


Give Command that will move a single file called "unix.txt"

7 Answers   IBM,


Categories