shell_scripts.md (106B)
1 # shell scripts 2 3 test for arguments (posix) 4 ``` 5 test $# -gt 0 || { echo "need arguments" ; exit 1 ; } 6 ```