Wiki
Home

bash

- <http://wiki.bash-hackers.org/doku.php>
- <http://tldp.org/LDP/abs/html/>
- <http://mywiki.wooledge.org/BashPitfalls>
- <http://www.kfirlavi.com/blog/2012/11/14/defensive-bash-programming>
- <http://redsymbol.net/articles/unofficial-bash-strict-mode/>
- <https://github.com/dylanaraps/pure-sh-bible>
- https://mywiki.wooledge.org/BashGuide

-

Hide Output

- <https://stackoverflow.com/questions/617182/with-bash-scripting-how-can-i-suppress-all-output-from-a-command>
-
- ```bash
  scriptname >/dev/null 2>&1
  ```