Regarding about the print line number/order


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Regarding about the print line number/order
# 1  
Old 07-09-2009
Regarding about the print line number/order

Hello,
I am trying to print line number/order using this command

awk '{print $0, FNR}' myfilename

Code:
11006                        A41              1888
11006                        A41              1888
11006                        A41              1888
11006                        A41              1888
...
....
...

and i got output like that

Code:
11006                        A41              1888  1
11006                        A41              1888  2
11006                        A41              1888  3
11006                        A41              1888  4
...
...
...

What i want is i want to print this line number or line sequence order at cursor position (assume at cursor position 14) like below without changing any other positiotion , i mean if A41 is at postion 30, i want A41 at position 30 after printing line number.




HTML Code:
11006         1               A41              1888
11006         2               A41              1888
11006         3               A41              1888
11006         4               A41              1888
...
...
...
That will be great if anybody can advice


Many thanks,
DAVID
# 2  
Old 07-09-2009
Not sure about your exact requirement for the column width..However, u can try something like :

Code:
awk '{ printf("%-25s%-5s%-25s%-25s\n",$1,FNR,$2,$3); }'  filename

# 3  
Old 07-09-2009
hello,

Many thanks for your reply, i have tested with my simple data and it is woking perfect. I will be testing with some complex data and if i stuck with something i will get back to forum.


Many thanks

---------- Post updated at 05:57 PM ---------- Previous update was at 01:43 PM ----------

Hello,
I was testing some more data and found some more problem, the code is below.Assume we got 3 attribute. At second attribute, there are some data(eg.A41/A6) missing like at the fourth and six line


Code:
11006                        A41              1888
11006                        A6               2456
11006                        A43              4532
11006                                         3333
11006                        A33              5412
11006                                         8987
11006                        A34              4999

if there is no data missing, when i use the code
Code:
awk '{ printf("%-7s%-22s%-17s%-4s\n",$1,FNR,$2,$3,$4); }'  myfile

it is working perfect and printing all line number at cursor postion 9.


But if there is missing data at second or third attribute,the output data mess up like that


Code:
11006  1                     A41              1888
11006  2                     A6               2456
11006  3                     A43              4532
11006  4                     3333                 
11006  5                     A33              5412
11006  6                     8987                 
11006  7                     A34              4999

Any idea how to fix this problem?



Many thanks
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

awk to find number in a field then print the line and the number

Hi I want to use awk to match where field 3 contains a number within string - then print the line and just the number as a new field. The source file is pipe delimited and looks something like 1|net|ABC Letr1|1530||| 1|net|EXP_1040 ABC|1121||| 1|net|EXP_TG1224|1122||| 1|net|R_North|1123|||... (5 Replies)
Discussion started by: Mudshark
5 Replies

2. UNIX for Dummies Questions & Answers

Print enter line number

Hi, I have below text file wer,r5yut,dfy5y,dytry w45w,vbjjbh,xfsd,ctfyuk xdte56,rty6r,r645,976fd w34r,dtyer,d5tyty,fdyrt I want to get an O/P the enter rows for example if I enter 2, the first row should print output wer,r5yut,dfy5y,dytry w45w,vbjjbh,xfsd,ctfyuk (4 Replies)
Discussion started by: stew
4 Replies

3. Shell Programming and Scripting

Print line number

how i need help again i have file input.txt like this 48:20111008_20111122:31231|123| 78:20111008_20111122:435453|321112| where 48 and 78 is line number 20111008_20111122 is a file and 31231|123| i want get in file, i am using manual awk for get that file like this awk 'NR==48... (6 Replies)
Discussion started by: zvtral
6 Replies

4. Shell Programming and Scripting

print lines between line number

Hi, Anyone help me to print the lines from the flat file between 879th line number and 1424th line number. The 879 and 1424 should be passed as input to the shell script(It should be dynamic). Can any one give me using sed or awk? I tried using read, and print the lines..Its taking too... (3 Replies)
Discussion started by: senthil_is
3 Replies

5. Shell Programming and Scripting

print the number of fields in each line

I am looking for equivalent of following awk command in perl # awk '{ print NF ":" $0 } ' junk1 8:VAH NIC_TYPE CONFIG SIZE_GB PILO KOM BHA_GRP DESCR 8:2 NIC6 cont 34 y n shal_orgrp /shal 8:4 NIC5 signa 52 n y shal_orgrp... (3 Replies)
Discussion started by: dynamax
3 Replies

6. Shell Programming and Scripting

print number of words in each line

Hi, Please suggest a way to print number of words in the end of each line. <input file> red aunt house blue sky bat and ball game <output file> red aunt house 3 blue sky 2 bat and ball game 4 Thanks! (2 Replies)
Discussion started by: mira
2 Replies

7. Shell Programming and Scripting

sed script - print the line number along with the line

Hi, I want to print the line number with the pattern of the line on a same line using multi-patterns in sed. But i don't know how to do it. For example, I have a file abc def ghi I want to print 1 abc 2 def 3 ghi I know how to write it one line code, but i don't know how to put... (11 Replies)
Discussion started by: ntpntp
11 Replies

8. Shell Programming and Scripting

Print selection of line based on line number

Hi Unix gurus Basically i am searching for the pattern and getting the line numbers of the grepped pattern. I am trying to print the series of lines from 7 lines before the grepped line number to the grepped line number. I am trying to use the following code. but it is not working. cat... (3 Replies)
Discussion started by: mohanm
3 Replies

9. Shell Programming and Scripting

Counts a number of unique word contained in the file and print them in alphabetical order

What should be the Shell script that counts a number of unique word contained in a file and print them in alphabetical order line by line? (7 Replies)
Discussion started by: proactiveaditya
7 Replies

10. Shell Programming and Scripting

print first number in each line

I have a file such as: .....12345......67890...xxx ....123456....78901...yyy ...1234567...89012...zzz ..12345678.90123...aaa Where the '.' character is a SPACE. I'm trying to print just the first number in each line. such as: 12345 123456 1234567 12345678 Both the number of... (1 Reply)
Discussion started by: dcfargo
1 Replies
Login or Register to Ask a Question