MEMTO

Notes on the web
☰ ABOUT WORKING NEWTERM ARCHIVE FEED »Linux »Program »Telecom »Tooltips »Misc

Bash related stuff

14 Sep 2018 bash process substitution
Pipe and redirection
  • Ref:
    • Pipe and stdin redirection to cat
  • Piping
    $ echo "hello world" | cat
    
  • Redirection
    $ cat < file.txt
    
  • Process Substitution
    $ cat <(echo "hello world")
    
Subshell (COMMAND EXECUTION ENVIRONMENT)
  • Ref:
    • Do parentheses really put the command in a subshell?
$ (command1; command2; command3) | command4

Related Posts

  • Separate record audio from a source in Ubuntu 10 Mar 2023
  • Spring datasource config 27 Feb 2023
  • Authen/Author ACL, RBAC, HRBAC 31 Mar 2022

memto.github.io

© 2025 ianwork9x's blog. All rights reserved.