sed in awk ? or nested awk ?


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users sed in awk ? or nested awk ?
# 8  
Old 01-31-2008
Quote:
Originally Posted by fpmurphy
Another method of solving the original question using getline

Code:
$cat awkfile
BEGIN { pid="" }

$2=="174" { pid=$3 }

END {
   if (pid != "") {
      tmp="sed -n /"pid"/p file"
      while ((tmp | getline) > 0)
         print
      close(tmp)
   }
}
$

Code:
$ awk -f awkfile tempfile.txt
t2589vg 8888 11234 -ksh
mqsiadm 174 8888 -ksh
$



thanks murphy,

Could you please tell or clarify me one thing, is there any problem when we store the value in a variable using awk ?
as:

fpm=`awk '$2=="174" { print $3 }' tempfind.txt` | sed -n /$fpm/p tempfind.txt

and

fpm=`awk '$2=="966906" {print $3}' tempfind.txt` | echo "$fpm"


let me know.
thnks.
Varun.Smilie
# 9  
Old 01-31-2008
Quote:
...is there any problem when we store the value in a variable using awk ?
AFAIK the problem lies in using single quotes in the second awk command. You are running a nested awk, so using single quotes again will confuse the initial outer awk script, (I ran into the same problem before).
So I'd suggest try to avoid the single quotes and use the other methods shown here to assign the variables.

Hope it helps.
# 10  
Old 02-06-2008
Lightbulb How to get the cell's value in a searched record ?

Quote:
Originally Posted by rubin
AFAIK the problem lies in using single quotes in the second awk command. You are running a nested awk, so using single quotes again will confuse the initial outer awk script, (I ran into the same problem before).
So I'd suggest try to avoid the single quotes and use the other methods shown here to assign the variables.

Hope it helps.
Hey,

Could you please tell me, how to get a particular cell value using awk.
As far as I know, awk works on records.,

As :
--------------------------------------
mqsiaaa 123 888
mqsiddd 456 999
t2589gg 789 555
-------------------------------------

In the above table, say i search using $2 column and i want to get the value of $3 of that searched record.

awk '$2~/456/ { printf $3 > "filefilter"}' temp.txt

Means I want the 999 only corrosponding to the search, but as awk works on records and $3 represent whole third column, it used to give me
888
999
555
all the three values in filefilter., BUT i want only 999 (respective to the matched record and its 3rd cell value.)

How to achieve that ??
Do let me know.

Thanks in advance.
Varun.Smilie
# 11  
Old 02-06-2008
Quote:
Originally Posted by varungupta
As far as I know, awk works on records..
Sure, but I was refering to the issues using single quotes in a nested awk. Back to your awk command, I see no issues using it as is. From the command line the output is correct:

Code:
cat temp.txt

mqsiaaa 123 888
mqsiddd 456 999
t2589gg 789 555

and

Code:
awk '$2~/456/ { printf $3 > "filefilter"}' temp.txt

   #The expected output is correct:

cat filefilter
999

Same can be said if you use a variable:
Code:
var=`awk '$2~/456/ { printf $3 }' temp.txt`
echo $var
999

# 12  
Old 02-08-2008
functions in awk ??

Quote:
Originally Posted by rubin
Sure, but I was refering to the issues using single quotes in a nested awk. Back to your awk command, I see no issues using it as is. From the command line the output is correct:

Code:
cat temp.txt

mqsiaaa 123 888
mqsiddd 456 999
t2589gg 789 555

and

Code:
awk '$2~/456/ { printf $3 > "filefilter"}' temp.txt

   #The expected output is correct:

cat filefilter
999

Same can be said if you use a variable:
Code:
var=`awk '$2~/456/ { printf $3 }' temp.txt`
echo $var
999

---------------------------------------------------------
Thanks a lot man !!

Could you please check following way of writing awk is correct or not ???

-----------------------------------------------------------

pattern= "mqsi[admtspr]"

cat tempgrep.txt | \
while read ppid
do
awk '{
recurcive_fun(ppid, pattern)
function recurcive_fun(n, pattern)
{
awk '{ if ($2~n && $1~pattern){
n=$3
recurcive_fun(n, pattern)}
else{
if ($2~n && $1!~pettern){
print $1 >> "tempmail.txt"
exit
}
else {next}
}
}' tempfind.txt
}
}'

done
-----------------------------------------------------------------

Its recursion being called.

tempgrep.txt has :
462948
1311040
880922

tempfind.txt has :
t2589vg 880922 462948 09:57:07 -ksh
mqsiadm 1298856 1311040 09:57:56 -ksh
mqsiadm 1311040 880922 09:57:19 -ksh

Please suggust !!
Thanks
VarunSmilie
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

awk - multiple and nested if-then-else

Hello. I would like to convert the following piece of code from bash to awk. Here are bash variables in a bash script. CUR_ROW_ID and ROW_ID_TO_SEARCH contains a string which represent a row id. The string contain a valid row id. CUR_ROW_ID sometimes may be null. CUR_VALUE... (3 Replies)
Discussion started by: jcdole
3 Replies

2. Shell Programming and Scripting

awk nested looping?

I am trying to parse a text file and send its output to another file but I am having trouble conceptualizing how I am supposed to do this in awk. The text file has a organization like so: Name Date Status Location (city, state, zip fields) Where each of these is on a separate line in... (1 Reply)
Discussion started by: kellyanneghj
1 Replies

3. Shell Programming and Scripting

How to add second variable in awk nested if condition?

Hi Gurus, I have a command to assign value based on input value. current condition is "if pattern matches "case", then assign "HOLD" else "SUCC"right now, I need to add one more condition (variable name is VAR). the condition is "if pattern1 matches "case", then assign "HOLD" else if... (2 Replies)
Discussion started by: ken6503
2 Replies

4. Shell Programming and Scripting

Nested if not working with /usr/xpg4/bin/awk

Hi, I am trying to do if inside the If in /usr/xpg4/bin/awk. But I am getting below error : /usr/xpg4/bin/awk -v a="${THREADIDARR }" 'BEGIN {FS="|"; n=split(a,b," "); for(i=1; i<=n; i++) c]=1;} length($3) == 0{ftag == 1{{print}}; length($3) != 0{$3 in c{ftag=1;print;} !$3 in c{ftag=0;}}'... (4 Replies)
Discussion started by: nes
4 Replies

5. Shell Programming and Scripting

Nested awk Statements

Hello again everyone, yes, I'm back again for more help! So I'm attempting to read two separate files and generate some XML code from that. My current code is: BEGIN { print "<?xml version=\"1.0\" encoding=\"utf-8\">" print "<Export>" } { x=1; print "<section name=\"Query" NR "\">"... (5 Replies)
Discussion started by: Parrakarry
5 Replies

6. Shell Programming and Scripting

Help with nested $s and quotations in bash / awk

Folks - newbie bash coder here and I'd like to get your help to make the code below work. As you can see, I was trying to count the total number of lines with the 3rd value >= 15 in a file and wanted to make the threshold "15" configurable, but apparently the $THRESHOLD value was not populated... (3 Replies)
Discussion started by: bashzipper
3 Replies

7. Shell Programming and Scripting

Nested case inside awk

please let me know if the below code could be written efficiently inside single awk case "$INP" in ksh) cat catalog | awk 'BEGIN {FS=",";} { print $2 } END {}' ;; pset) cat catalog | awk 'BEGIN {FS=",";} { print $3 } END {}' ;; dml) cat catalog | awk 'BEGIN {FS=",";} {... (2 Replies)
Discussion started by: cvsanthosh
2 Replies

8. Shell Programming and Scripting

syntax question in regards to nested awk statements

Hello all, I am writing up an input file and I was hoping I could get some guidance as to how to best consolidate these 2 awk statements for 1 while loop. Here's my input file # cat databases.lst #NOTE: These entries are delimited by tabs "\t" #oracleSID name/pass # db11 ... (2 Replies)
Discussion started by: Keepcase
2 Replies

9. Shell Programming and Scripting

Awk Script: Nested search using different patter

Hi Friends. Please have a look at dummy file. I need to extract from this file: 1. Counts of event= 2. the 2nd coulmn is unique call id of this transaction. Based on that, i have to search for txstatus= . Note: Values of event, calltype and txstatus can be anything. I want to print... (1 Reply)
Discussion started by: itsmesanju
1 Replies

10. Shell Programming and Scripting

awk 2 delimiter nested

Hello All, This work could be very easy for you guys. I would really appreciate help. input file: output file: (Desired) What I am capable of doing: Command: cat inputfile | awk -F\| '{print "num="$1" value="$2" digits="$3" name1="$4" file="$5" code="$6}' > outputfile Result what I am... (5 Replies)
Discussion started by: onlyroshni
5 Replies
Login or Register to Ask a Question