mirror of
https://github.com/Brandon-Rozek/website.git
synced 2024-11-09 18:50:34 -05:00
528 B
528 B
title | date | draft | tags | medium_enabled | |
---|---|---|---|---|---|
Quick Bash: Check Argument Count | 2020-12-15T09:25:11-05:00 | false |
|
true |
I've been writing more bash scripts recently and I noticed that I often check for the number of arguments before validating them in my scripts. I'll share that small snippet here for my future self.
#!/bin/sh
set -o errexit
set -o nounset
set -o pipefail
show_usage() {
echo "Usage: script [arg1]"
exit 1
}
# Check argument count
if [ "$#" -ne 1 ]; then
show_usage
fi