In a file , how to retrieve the lines which are the
multiples of 50 ? like 50,100,150th lines etc.

Answers were Sorted based on User's Feedback



In a file , how to retrieve the lines which are the multiples of 50 ? like 50,100,150th lines etc...

Answer / ramesh jp

awk 'NR % 50 == 0' print

Is This Answer Correct ?    10 Yes 1 No

In a file , how to retrieve the lines which are the multiples of 50 ? like 50,100,150th lines etc...

Answer / kavita

awk 'NR % 50 ==0 {print}' filename

Is This Answer Correct ?    6 Yes 2 No

In a file , how to retrieve the lines which are the multiples of 50 ? like 50,100,150th lines etc...

Answer / ganeswar bojanapu

Here is simply command

sed -n '50~50'p filename

Is This Answer Correct ?    4 Yes 0 No

In a file , how to retrieve the lines which are the multiples of 50 ? like 50,100,150th lines etc...

Answer / sarthak

shivu,

your ans is wrong

Is This Answer Correct ?    3 Yes 0 No

In a file , how to retrieve the lines which are the multiples of 50 ? like 50,100,150th lines etc...

Answer / vivek

egrep "^[0-9]*[05]0$" filename

Is This Answer Correct ?    2 Yes 2 No

In a file , how to retrieve the lines which are the multiples of 50 ? like 50,100,150th lines etc...

Answer / abhishek

awk 'NR % 2 == 0 {print}' abc.txt

Is This Answer Correct ?    3 Yes 4 No

In a file , how to retrieve the lines which are the multiples of 50 ? like 50,100,150th lines etc...

Answer / shivu

i=50
lines=`wc -l file | cut -d" " -f1`
while [ "$i" -le "$lines" ]
do
head -n $i file | tail -1
i=`expr $i + 50`
done


It works for anything.. :)

Is This Answer Correct ?    3 Yes 5 No

In a file , how to retrieve the lines which are the multiples of 50 ? like 50,100,150th lines etc...

Answer / shivu

root@chandru-VirtualBox:~# egrep "^[0-9]*[0|5]0" file
50
100
150
200
250
300
350
400
450
500
501
502
503
504
505
506
507
508
509
550
600
650
700
750
800
850
900
950
1000

But the below one is
root@chandru-VirtualBox:~# egrep "^[0-9][0|5][0]" file
100
150
200
250
300
350
400
450
500
550
600
650
700
750
800
850
900
950
1000

This is also not correct. up to some extend it is ok.

Is This Answer Correct ?    1 Yes 4 No

In a file , how to retrieve the lines which are the multiples of 50 ? like 50,100,150th lines etc...

Answer / mohsin

egrep "^[0-9]*[0|5]0" filename

Is This Answer Correct ?    5 Yes 13 No

Post New Answer

More Shell Script Interview Questions

How many prompts are available in a UNIX system?

1 Answers  


A file has multiple records each having three 30-bit long fields(field1,field2,field3).There is also a lookup file,LOOK_UP.dat.Now, we need to consider only the last ten digits of field1 and lookup the file LOOK_UP.dat. If there a match then field2 and field3 should replaced with corresponding data from the lookup file. otherwise that particular record,for which there is no match, should be stored in a seperate file.

2 Answers   Wipro,


What are the advantages of shell script?

0 Answers  


What is shell and terminal?

0 Answers  


How do I run a .sh file?

0 Answers  






1.Write a script, which converts a number from binary to hexadecimal format or vice versa.

1 Answers   ADP,


How to get the first line from a file using just the terminal?

0 Answers  


What is the use of break command?

0 Answers  


I have 2 files and I want to print the records which are common to both.

0 Answers  


What is meant by $1 in shell script?

0 Answers  


why did you apply to shell

3 Answers   Shell,


How to print all the arguments provided to the script?

0 Answers  


Categories