Advertisement
andrejsstepanovs

bash set -eux variables

Dec 6th, 2021
1,181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.09 KB | None | 0 0
  1. set -eux
  2.  
  3. -e stop on non zero
  4. -u stop on undefined parameters
  5. -x show command in stdout
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement