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 - …
6
votes

What Linux/Unix commands are outdated and have powerful alternatives?

Not exactly replacements for anything, but moreutils is a collection of small Unixy tools, which are basically meant to fill hol …