aboutsummaryrefslogtreecommitdiff
path: root/bin/cf
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2016-08-09 17:15:40 +1200
committerTom Ryder <tom@sanctum.geek.nz>2016-08-09 17:20:10 +1200
commit9fb350dc7c8cc5259ef24e0cb097031179fab1d6 (patch)
tree839dd0b8ee3f5323b1cd6aefa22b605b99437d62 /bin/cf
parentMention nosls/sls flags in slsf(1) man page (diff)
downloaddotfiles-9fb350dc7c8cc5259ef24e0cb097031179fab1d6.tar.gz
dotfiles-9fb350dc7c8cc5259ef24e0cb097031179fab1d6.zip
Improve commenting/exit handling in binscripts
Diffstat (limited to 'bin/cf')
-rwxr-xr-xbin/cf5
1 files changed, 3 insertions, 2 deletions
diff --git a/bin/cf b/bin/cf
index feac0236..3ff60156 100755
--- a/bin/cf
+++ b/bin/cf
@@ -1,6 +1,5 @@
#!/bin/sh
# Count entries in a given set of directories
-ex=0
for dir in "${@:-.}" ; do
# Warn if a non-directory was given, flag errors, but continue
@@ -25,4 +24,6 @@ for dir in "${@:-.}" ; do
# Print number of parameters
printf '%u\t%s\n' "$#" "$dir"
done
-exit "$ex"
+
+# Exit non-zero if a non-directory was given as an argument
+exit "${ex:-0}"