aboutsummaryrefslogtreecommitdiff
path: root/bin/urlc
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/urlc
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/urlc')
-rwxr-xr-xbin/urlc3
1 files changed, 1 insertions, 2 deletions
diff --git a/bin/urlc b/bin/urlc
index b898b99c..63f075bf 100755
--- a/bin/urlc
+++ b/bin/urlc
@@ -25,7 +25,6 @@ list=$td/list head=$td/head body=$td/body
# Iterate through input; ignore leading/trailing whitespace
# shellcheck disable=SC2002
cat -- "${@:--}" >"$list"
-ex=0
while read -r url ; do
# Skip anything that doesn't start with HTTP
@@ -74,4 +73,4 @@ done <"$list"
wait
# Exit if any errors
-exit "$ex"
+exit "${ex:-0}"