Bash related stuff
Pipe and redirection
- Ref:
- Piping
$ echo "hello world" | cat
- Redirection
$ cat < file.txt
- Process Substitution
$ cat <(echo "hello world")
Subshell (COMMAND EXECUTION ENVIRONMENT)
$ (command1; command2; command3) | command4