vote up 1 vote down star

The standard way to capture command output in Bourne shell is to use the $() syntax:

output=$(mycommand)

For commands that have a lot of output, however, this requires the shell allocate memory for the whole thing as one long string. I'd prefer to find something that does the moral equivalent of the Unix C function popen, to get a new file descriptor I could read from:

newfd=popen(mycommand)
while read -u $newfd LINE; do
  #process output
done

Is this even possible?

flag

50% accept rate
bash4 has a nice new feature: coproc . it would be ideal for you! too bad it is still so new – Johannes Schaub - litb Mar 8 at 23:16

2 Answers

vote up 6 vote down check
#!bash
ls | while read X
do 
    echo  $X is a directory entry
done

Replace 'ls' with the command of your choice

link|flag
Completely obvious once you see it. Thanks for the quick response! – Christopher Currie Mar 8 at 23:27
note the while loop is run in a subshell and so any changes it makes to variables are not passed back to the rest of the script – pixelbeat Mar 8 at 23:44
vote up 0 vote down

Thanks Neil. Your command helped me solve some other issue.

link|flag

Your Answer

Get an OpenID
or

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