blob: 2fa38be0611d2e8ea1ee5c0549470d5ba16649e5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
---
format: rst
toc: no
...
==================
BASH
==================
Job Control
The syntax for "job number" or "JOBSPEC" (when using ``kill`` or similar) is ``%4`` or ``%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
|