aboutsummaryrefslogtreecommitdiff
path: root/bin/sls
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/sls
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/sls')
-rwxr-xr-xbin/sls8
1 files changed, 8 insertions, 0 deletions
diff --git a/bin/sls b/bin/sls
index df8625de..d3c67cc7 100755
--- a/bin/sls
+++ b/bin/sls
@@ -1,12 +1,20 @@
#!/bin/sh
+# Print hostnames from ssh_config(5) files, defaulting to the usual paths
+
+# If we weren't given a file explicitly, we'll try to read both /etc/ssh_config
+# and ~/.ssh_config in that order if they exist
if [ "$#" -eq 0 ] ; then
for cfg in /etc/ssh_config "$HOME"/.ssh/config ; do
[ -e "$cfg" ] || continue
set -- "$@" "$cfg"
done
fi
+
+# If we still have no files to read, bail out and warn the user
if [ "$#" -eq 0 ] ; then
printf >&2 'sls: ssh_config(5) paths not found, need argument\n'
exit 1
fi
+
+# Otherwise, we can run slsf(1) over the ones we did collect
slsf -- "$@"