You are not logged in.

#1 2010-04-06 15:19:02

tamikana
Member
Registered: 2010-04-06
Posts: 17

Need help for a simple script - Is what I have the only way?

Hello this is my first post!

I'm making a little script that reads a text file.

#/bin/bash
COUNTER=1
while read line
do
    echo "$COUNTER"
        COUNTER=`expr $COUNTER + 1`
done < mytextfile

I simply want to print the line number I'm currently reading but isn't there a more simple way to do this than what I have above?
Is the only way to do this is by using a temporary variable?
Thanks in advance big_smile

Last edited by tamikana (2010-04-06 15:22:52)

Offline

#2 2010-04-06 15:26:07

Allan
Pacman
From: Brisbane, AU
Registered: 2007-06-09
Posts: 11,393
Website

Re: Need help for a simple script - Is what I have the only way?

This sounds a lot like homework....
http://wiki.archlinux.org/index.php/For … e#Homework

Online

#3 2010-04-06 15:30:57

tamikana
Member
Registered: 2010-04-06
Posts: 17

Re: Need help for a simple script - Is what I have the only way?

Well it's not like I don't know how to do what I want but I thought it'd be nice to know other ways by experienced people.

Offline

#4 2010-04-06 17:10:29

brisbin33
Member
From: boston, ma
Registered: 2008-07-24
Posts: 1,796
Website

Re: Need help for a simple script - Is what I have the only way?

for i in $(seq 1 $(wc -l < ./file)); do echo $i; done

tongue.

Offline

#5 2010-04-06 17:28:43

tamikana
Member
Registered: 2010-04-06
Posts: 17

Re: Need help for a simple script - Is what I have the only way?

Thank you very much now I'm learning!

Offline

#6 2010-04-06 17:47:05

Procyon
Member
Registered: 2008-05-07
Posts: 1,819

Re: Need help for a simple script - Is what I have the only way?

lol, brisbin!

awk '{array[NR]="read"}END{a=0;while(++a){if(a in array){print a}else{exit}}}' file

Offline

#7 2010-04-06 17:47:05

Procyon
Member
Registered: 2008-05-07
Posts: 1,819

Re: Need help for a simple script - Is what I have the only way?

edit: double post

Last edited by Procyon (2010-04-06 17:47:42)

Offline

Board footer

Powered by FluxBB