aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2016-07-31 00:52:42 +1200
committerTom Ryder <tom@sanctum.geek.nz>2016-07-31 00:52:42 +1200
commitaed62f54eb82151b2007e6d04ca0b8dd7367eb64 (patch)
tree93e1594315917537b59f1f9e4fe4cb61611dfba2
parentCorrect "return" to "exit" in shell scripts (diff)
downloaddotfiles-aed62f54eb82151b2007e6d04ca0b8dd7367eb64.tar.gz
dotfiles-aed62f54eb82151b2007e6d04ca0b8dd7367eb64.zip
Add a shellcheck exception
-rwxr-xr-xbin/sta1
1 files changed, 1 insertions, 0 deletions
diff --git a/bin/sta b/bin/sta
index b5ae56f5..396a2015 100755
--- a/bin/sta
+++ b/bin/sta
@@ -2,6 +2,7 @@
# Print list of sls(1) hostnames that exit 0 when a connection is attempted
# and the optional given command is run. Discard stdout, but preserve stderr.
sls | while read -r hostname ; do
+ # shellcheck disable=SC2029
ssh -nq -- "$hostname" "$@" >/dev/null || continue
printf '%s\n' "$hostname"
done