Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to avoid creating any new files to store output in order to minimize the risk of overwriting something in a directory with the same name. I am trying to just evaluate each line in a stream with a pipe instead of outputting to a file and then using a while read line do done < file loop. Something like:

echo -e "1\n2\n3\n4\n5" | #evaluate current line separately#

Could I somehow read each line into an array and then evaluate the elements in the array? or is there a better way to avoid accidentally overwriting files?

share|improve this question

3 Answers

up vote 3 down vote accepted

In bash, the common way is to use the Process Substitution:

while read line ; do
    ...
done < <( commands producing the input)
share|improve this answer
1  
Is there a portable way to do this? The < <( command ...) syntax is not supported in ksh. – Henk Langeveld Aug 3 '12 at 9:14
What's wrong with this? command_producing_input |while read line; do ...; done – Mark Edgar Aug 3 '12 at 15:58
@MarkEdgar: Try changing or setting a variable in the loop body. – choroba Aug 3 '12 at 16:05

You were halfway there...

echo -e "1\n2\n3\n4\n5" | while read line; do
    ...
done

Note that bash runs each part of the pipeline in a separate process, and any variables defined there will not persist after that block. (ksh93 will preserve them, as the loop will run in the current shell process.)

share|improve this answer
Process substitution avoids that problem. Also, Bash 4.2 has shopt -s lastpipe. – Dennis Williamson Aug 3 '12 at 9:11

You can avoid overwriting files by using mktemp or tempfile to create temporary files with unique names. However, I would use process substitution as in choroba's answer.

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.