Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to run the system command in a awk script and get its output stored in a variable. I've been trying to do this, but the command's output always goes to shell and I'm not able to capture it. Any ideas on how this can be done?

Example:

$ date | awk --field-separator=! {$1 = system("strip $1"); /*more processing*/}

Should call the strip system command and instead of sending the output to the shell, should assign the output back to $1 for more processing. Rignt now, its sending output to shell and assigning the command's retcode to $1.

Thanks for any help

share|improve this question
nit: The output isn't going to the shell, it's going to the terminal/console. The shell doesn't read any of the output of its children--they just share file descriptors that are associated with the same tty. – William Pursell Dec 25 '09 at 16:54

2 Answers

up vote 11 down vote accepted

Note: Coprocess is GNU awk specific. Anyway another alternative is using getline

cmd = "strip "$1
while ( ( cmd | getline result ) > 0 ) {
  print  result
} 
close(cmd)
share|improve this answer
Thanks. This way, I can remove the & from my answer. Looks cooler. But I'm writing only for usage in Linux, so unavailability of gawk shouldn't be an issue ? – Sahas Dec 25 '09 at 10:43
yes, shouldn't be an issue. still you should check documentation and see if coprocess is only available in certain version of gawk. i can't remember on top of my head – ghostdog74 Dec 25 '09 at 10:45
From version 3.1. RedHat has 3.1.5. Anyways I'll use the way you suggested, unless I want to send something to stdin of the command, in which case coprocess is helpful. – Sahas Dec 25 '09 at 10:47

Figured out.

We use awk's Two-way I/O

{
  "strip $1" |& getline $1
}

passes $1 to strip and the getline takes output from strip back to $1

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.