All public logs

From Cheatsheet
Jump to navigationJump to search

Combined display of all available logs of Cheatsheet. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 21:57, 28 July 2023 Patrick talk contribs created page Linux:Bash-Ivo (Created page with "Category:Cheatsheet This page was written and contributed by Ivo Palli. == Template == <syntaxhighlight lang='bash'> #!/usr/bin/env bash set -o errexit # Exit on error, do not continue running the script set -o nounset # Trying to access a variable that has not been set generates an error set -o pipefail # When a pipe fails generate an error if [[ "${1-}" =~ ^-*h(elp)?$ ]]; then echo 'Usage: ./script.sh arg-one arg-two This is an awesome bas...")