User Name Password Register
DaniWeb IT Discussion Community
All
What is DaniWeb IT Discussion Community?
You're currently browsing the Shell Scripting section within the Software Development category of DaniWeb, a massive community of 397,612 software developers, web developers, Internet marketers, and tech gurus who are all enthusiastic about making contacts, networking, and learning from each other. In fact, there are 2,539 IT professionals currently interacting right now! Registration is free, only takes a minute and lets you enjoy all of the interactive features of the site.
Please support our Shell Scripting advertiser:
Views: 20359 | Replies: 3
Reply
Join Date: Jul 2005
Posts: 2
Reputation: rhnaeco is an unknown quantity at this point 
Rep Power: 0
Solved Threads: 0
rhnaeco rhnaeco is offline Offline
Newbie Poster

awk "for loop" and variables

  #1  
Aug 10th, 2005
hi, i have a series of files like this one:

D22 L58 two
O12 L58 two
Z5 L58 two
Z19 L58 two

and i want to make the first column into a variable ($var) that will be used in the rest of the shell script
This is my awk script so far :
awk '{
for (i = 1; i <= 1; i++)
print "var="$i
}' L58vector.txt > test.txt


but instead of producing a file (test.txt) containing just one ' var=D22'
i get:
var=D22
var=O12
var=Z5
var=Z19
which renders the variable useless.

i then want to match this variable to the same number in another file which contains latitude and longitude data and print them to an output file before starting again with the next variable (var=O12)

can anyone help?
AddThis Social Bookmark Button
Reply With Quote  
Join Date: Jan 2008
Posts: 1
Reputation: swellcontour is an unknown quantity at this point 
Rep Power: 0
Solved Threads: 0
swellcontour swellcontour is offline Offline
Newbie Poster

Re: awk "for loop" and variables

  #2  
Jan 21st, 2008
awk runs it's script once per line of input in the file. it automatically advances to the next record and feeds the input to your script. $1 is the first field of a record, and you print it once per record
Reply With Quote  
Join Date: Oct 2007
Posts: 264
Reputation: eggi is on a distinguished road 
Rep Power: 1
Solved Threads: 26
eggi eggi is offline Offline
Posting Whiz in Training

Re: awk "for loop" and variables

  #3  
Jan 22nd, 2008
This is true of sed, also.

Perhaps something as simple as

var=`head -1 tex 2>&1|awk '{print $1}'`

woud do it ?

, Best wishes,

Mike
Linux and Unix Tips, Tricks and Individual Advice - The Linux and Unix Menagerie!
------------------------------------------------------------------------
Having trouble passing cert exams? Check out How To Pass Any Computer Certification Test!
Reply With Quote  
Join Date: Apr 2006
Posts: 137
Reputation: ghostdog74 is an unknown quantity at this point 
Rep Power: 3
Solved Threads: 26
ghostdog74 ghostdog74 is offline Offline
Junior Poster

Re: awk "for loop" and variables

  #4  
Jan 22nd, 2008
awk 'NR==1{ print "var="$1}' file
Reply With Quote  
Reply

Only community members can participate in forum threads. You must register or log in to contribute.

Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)

 

DaniWeb Shell Scripting Marketplace
Thread Tools Display Modes

Similar Threads
Other Threads in the Shell Scripting Forum

All times are GMT -4. The time now is 7:47 pm.
Forum system based on vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
©2003 - 2008 DaniWeb® LLC