Перенаправление:
- перенаправить stdout:
$ ./a.out > out.txt
- перенаправить stdin:
$ ./a.out < in.txt
- перенаправить stderr:
$ ./a.out ^ err.txt
- перенаправить stdout и stderr одновременно:
$ ./a.out > full_out.txt 2>&1
Пайпинг:
- stdout:
$ ./a.out | less
- stderr:
$ ./a.out ^| less
- и stdout, и stderr:
$ ./a.out 2>&1 | less