Numbering a Text File


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Numbering a Text File
# 8  
Old 12-08-2008
Quote:
Originally Posted by omgsomuchppl
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
In that case just modify your script to validate the string.

line_no=1
while read each_line
do
if [ ! -z $each_line ]
then
line_no=`expr $line_no + 1`
echo "$line_no $each_line"
fi
done < input_file > output_file
# 9  
Old 12-08-2008
Eureka.

U guys make things way to complecated. hehe. i just used sed -n '1p' for the first line..
But im wondering..Is there a way to loop through so i dont have to use a different varaible for a new line each time..? Because my sed pipeline is kinda long..

Example

Var1=$( cat $FILE | sed ..... | sed -n '1p' )
Var2=$( cat $FILE | sed ..... | sed -n '2p' )

OR can i have the long sed pipeline to be a varaible..To then have:
Var3=$( cat $FILE | longVar | sed -n '3p' )


Also..A command that would be really extemely soo very valuble to me would be to print lines 1 - 12 or so at once.

sed -n '/[1-12]/'
or something like that, because if i were to have sed -n '1-12p' it wouldnt include the blank lines..understand? I guess i have no choice to do it seperately. grr.

Last edited by omgsomuchppl; 12-08-2008 at 03:26 AM.. Reason: grr
# 10  
Old 12-08-2008
new line after X'th feild? in awk or sed or grep or ..

Last edited by omgsomuchppl; 12-08-2008 at 03:53 AM..
# 11  
Old 12-08-2008
Hi! If I were you, I would try the suggested steps to strip off the blank lines then from there you can make further actions on your file.

I guess your file is not that big so why not paste it here with code tags. Paste your exact input file(if that's possible) and then your expected output file, just to make things clear.
# 12  
Old 12-08-2008
i might get in trouble if i post the actual text file and also the sed pipeline.
I think i have it figured out tho..And i dont want to quit until its done, so this is an all nighter for me..But as of this moment i've already done what i said i was going to do and i have a consecutive amount of varaibles. And it works for 1 of my text files! But i need to get it to work for all of them and i think all i have to do is delete a space from the files LOL. Its like im globally reading 1 file for all the files i need. So everything is changed if i change 1 thing.

Thanks for your help!
# 13  
Old 12-08-2008
wk $NF1 ( for line 1 )
# 14  
Old 12-08-2008
fixed script for number non-blank lines

try this (*) out :

Code:
n=1
cat "$FILE" |
while read line
do
    if [ "$line" == "" ]
    then
        echo
    else
        echo "$n) $line"
        n=`expr $n + 1`
    fi
done

(*) but be aware that "echoing" a line read from a file crunches spaces, besides some other side effects ;

good luck, and success !

botao
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