software/bash
BASH
- Job Control
The syntax for “job number” or “JOBSPEC” (when using
killor similar) is%4or%5.
Piping
You can pipe both stdout and stderr together either to a file or two another command:
grep --asdf >& /some/file
grep --asdf |& less
