Stephen Shirley's [diamond at skynet.ie] 20 lines of wisdom included:
:>Mornin',
:> Right. I know this isn't possible. But neither is bumble-bee
:>flight [0]. So here goes anyway. If I do this:
:>:>echo bla | awk '{system("export FOO="$0); print "Value was
:>"ENVIRON["FOO"]}'
:>:>It doesn't work. Now this is only an example, the real thing is much more
:>involved. So the question is - how do I get the output of something I ran
:>using the system function in awk?
Awk isn't designed to do this kind of thing and you can't do it
directly from awk. However, it is possible using some shell + awk.
echo bla | awk 'BEGIN { printf("FOO='%s'\n", $0) }' > /tmp/awk.$$
. /tmp/awk.$$
rm /tmp/awk.$$
Or some shells allow the eval statement, so that:
echo bla | eval `awk 'BEGIN { printf("NEWVAR=%s\n",$0) }'`
should work.
Regards,
Phil.
Maintained by the ILUG website team. The aim of Linux.ie is to
support and help commercial and private users of Linux in Ireland. You can
display ILUG news in your own webpages, read backend
information to find out how. Networking services kindly provided by HEAnet, server kindly donated by
Dell. Linux is a trademark of Linus Torvalds,
used with permission. No penguins were harmed in the production or maintenance
of this highly praised website. Looking for the
Indian Linux Users' Group? Try here. If you've read all this and aren't a lawyer: you should be!