Hello Puppians! The topic here is about AWK and persistence of variables; not Puppy at all.
At the moment, the code below does nothing except illustrate a problem I don't understand.
I suspect my lack of knowledge involves local variables vs global variables, or (in this case) variables within the 'BEGIN' part of an AWK command vs variables within the main command BODY.
Here is my code.
Code: Select all
vPA=/mnt/home/bNgo/transcript/indexing/ # The name of the folder containing my work-file
vINFIL=x_sample.txt # The name of my work-file. This text file contains 7 records, each with 4 fields.
IX_KEY="blank"
awk 'BEGIN { $IX_KEY="void"; print "index keyword is: ", $IX_KEY;
print "re-ordering fields in raw ix file" ;\
printf $IX_KEY;\
print "\n - - - - - - - - - - - - - - - -"} # <<- eoBEGIN -<<<
# main follows
{ printf "\n" $IX_KEY " Rec. nr " NR " ==> " $0 " - "; $IX_KEY=$3; printf $IX_KEY;}
# eo-main
END { print "\n "NR, " records processed ", "\n --> " $IX_KEY; } ' $vPA$vINFIL
Some words of explanation. The file 'x-sample.txt' contains 4 fields per record. For every record the items before "Rec. nr" (in the printout) are the 4 fields. So - a number, a colon (:) a vegetable and the record number (- one to seven-). The appearance of these four fields before "Rec, nr: illustrates the problem nicely, because the value of IX_KEY here MUST be null because the print-out shows every field in the record. I repeat IX_KEY (therefore) has the value $0. I expect the first word in the first line should be 'void', and after some vegetable. Immediately above the dashed line IX_KEY has the value "void". Again, at the end of the line IX_KEY has the value from $3 - the vegetable. It has that value, because I assigned that value in the command: $IX_KEY=$3;# . ye-tic.awk
index keyword is: void
re-ordering fields in raw ix file
void
- - - - - - - - - - - - - - - -
157 : cucumber 1 Rec. nr 1 ==> 157 : cucumber 1 - cucumber
160 : cucumber 2 Rec. nr 2 ==> 160 : cucumber 2 - cucumber
174 : tomato 3 Rec. nr 3 ==> 174 : tomato 3 - tomato
191 : tomato 4 Rec. nr 4 ==> 191 : tomato 4 - tomato
191 : tomato 5 Rec. nr 5 ==> 191 : tomato 5 - tomato
27 : lettuce 6 Rec. nr 6 ==> 27 : lettuce 6 - lettuce
-1 : end 7 Rec. nr 7 ==> -1 : end 7 - end
7 records processed
--> end
What is going on here? I print the value of IX_KEY three times. At the beginning it is 'void' - as expected. Then (in the main loop) it is 'null' or interpreted as null and hence $0. Then, at the end of the line it has the string value of $3, but .... at the beginning of the following line - it is again $0. Hmmm .... I don't understand this!!
I must add: The code itself is in a script: ye-tic.awk. The script is in /root/my-applications/bin and I invoke the script as you see above: ie # . ye-tic.awk
Clearly I don't understand something about variable persistence (or perhaps I have two variables with the same name). I don't understand this. I read the manual about variables, and the answer is probably in there, but after 8 hours of de-bugging, it's time to call on the rest of the pack for help! Sorry that the presentation here does not line up in well-ordered columns. Woof!
TIA
cobaka