Keep repeating a command until it fails
That may be useful to make some kind of stress testing or to “ensure” the command is doing right.
Pretty simple:
$ while ./command; do true; done
[ show comments ]
blog comments powered by Disqus