My awk script:
I would like to take variable $19 and run the following shell command on it:
Then plug that ouput back into my awk program and get the results ... is this possible?
Code:
bpimagelist -l -d 12/12/2007 -M uhilhr03 | grep ^IMAGE | awk 'BEGIN {OFS=":"}{print $2, $11, $20, $19}'
I would like to take variable $19 and run the following shell command on it:
Code:
bpdbm -ctime $19
Then plug that ouput back into my awk program and get the results ... is this possible?