Numbering a Text File


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Numbering a Text File
# 1  
Old 12-07-2008
Numbering a Text File

Running into a little problem with blank lines.

My file is of this format:
Quote:
Some text

Some more text

And This as well.
To number each line of the file i would use:
Code:
 
n=1
echo "$FILE" |
while read line
do
echo "$n) $line"
n=`expr $n + 1`

But really, i dont want to number the blank lines.
What i've tried is to use sed commands to the FILE before i pipe its contents into the while, but sed just bunchs the contents together and my code reads it at one line..

The sed command sed 'nd' reads every other line right? Unfortuantely for me that doesnt work either..
# 2  
Old 12-07-2008
For simplicity you might want to try the cat command.

Code:
cat -b filename

or if you want to stick with your code just add the command before the while command.
Code:
grep -v '^$' filename

to delete all blank lines.

or
Code:
grep -v '^$' filename |cat -b

it may however depends of how large your file is. Hope this helps.

Last edited by yongitz; 12-07-2008 at 11:28 PM..
# 3  
Old 12-07-2008
Try this awk solution:
Code:
awk 'NF{$0=++c FS $0}1'  file


Last edited by danmero; 12-08-2008 at 12:03 AM.. Reason: shorter
# 4  
Old 12-07-2008
cat file.txt | sed '/^$/d' | cat -n
# 5  
Old 12-08-2008
Code:
sed '/./!d' file | sed =

# 6  
Old 12-08-2008
Can i store the contents of the file into a varaible and still be able to delete blank lines? Thats what i've been trying
# 7  
Old 12-08-2008
Well, what im after is to use awk or sed ( awk might be easiest ) to print each line of the file sepearately.

awk $NF1 ( for line 1 )
awk $NF2 ( for line 2 )

i dont know the syntax for it..

The plain text that i posted above is similar to the contents of the file that im working with. Is there an awk command to do the following:

awk ( echo something ) $myvar print the line 1 of the contents of the varaible..

Im sorry, im so bad with unix.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Match text to lines in a file, iterate backwards until text or text substring matches, print to file

hi all, trying this using shell/bash with sed/awk/grep I have two files, one containing one column, the other containing multiple columns (comma delimited). file1.txt abc12345 def12345 ghi54321 ... file2.txt abc1,text1,texta abc,text2,textb def123,text3,textc gh,text4,textd... (6 Replies)
Discussion started by: shogun1970
6 Replies

2. Shell Programming and Scripting

awk changing numbering in output file

The below awk is supposed filter $8 of example.txt using the each line in gene.txt. I think it is but why is it renumbering the 1,2,3 in $1 to 28,29,394? I have attached the data as it is large, example.txt is the file to be searched, gene.txt has the lines to match, and filtered.txt is the current... (2 Replies)
Discussion started by: cmccabe
2 Replies

3. UNIX for Dummies Questions & Answers

numbering lines in a file

if we execute :set nu in vi mode, it displays the line numbers. so how to make this permanently in a file. Whenever i execute cat , the line numbers should be there. please help me. thanks (4 Replies)
Discussion started by: pandeesh
4 Replies

4. Shell Programming and Scripting

Numbering file's lines

hey a file called test : Code: hey1 hey2 hey3 ........ how to : Code: 1.hey1 2.hey2 3.hey3 .......... (3 Replies)
Discussion started by: eawedat
3 Replies

5. Shell Programming and Scripting

help with numbering a file

Hi, All I need to do is number a file. The file looks like this > JJJJJJJJJJJJJJJJJJJJJ > JKJKJKKKKKKJJJ > MMMMYKKKJKKK what I want to do is number it so that theres a numerical value beside the >. >1 JJJJJJJJJJJJJJJJJJJJJ >2 JKJKJKKKKKKJJJ (2 Replies)
Discussion started by: kylle345
2 Replies

6. UNIX for Dummies Questions & Answers

Ghostscript output file numbering?

I am using ghostscript to convert a multi-page pdf file to individual jpg files. I am wondering if there is a way to get ghostscript to start numbering the output jpg files from zero? What i am trying to convey is that it starts naming my files from page_001.jpg, page_002.jpg, etc., and would like... (0 Replies)
Discussion started by: RacerX
0 Replies

7. Shell Programming and Scripting

numbering each line in a text file

I have a simple text file. I want to number each line in that file . for example: My text file is unix my file test My output should be 1 unix 2 my file 3 test (5 Replies)
Discussion started by: pitagi
5 Replies

8. Windows & DOS: Issues & Discussions

Numbering lines in a file

Hi all, I need to number the lines in a file. I tried using "set nu" in the vi editor, but it is only temporary. Can anyone help me please. Thanx in advance. MK (1 Reply)
Discussion started by: minazk
1 Replies

9. Shell Programming and Scripting

Numbering lines in a file

Hi all, I need to number the lines in a file. I tried using "set nu" in the vi editor, but it is only temporary. Can anyone help me please. Thanx in advance. MK (4 Replies)
Discussion started by: minazk
4 Replies

10. UNIX for Dummies Questions & Answers

Numbering!

Just a shot question... how to make 1,2,3,...999 into the form of 001,002,003....999 (3 digits) Thanks.... (9 Replies)
Discussion started by: biglemon
9 Replies
Login or Register to Ask a Question