Search Results

1
vote

How do I run a command in a loop until I see some string in stdout?

CONT=1; while [ $CONT -gt 0 ]; do $CMD | tee -a $FILE | grep -q $REGEXP; CONT=$? ; done The tee command can capture stdout in a pipe while still passing the data on, and - …
1
vote

bash, dash and string comparison

Use = instead of ==. Comparisons are handled by test(1). /usr/bin/[ is typically a link to /usr/bin/test . The only difference is that if youb use [ in a shell script, the ] is required aswell. …