diff options
author | Tom Ryder <tom@sanctum.geek.nz> | 2013-09-14 17:14:52 +1200 |
---|---|---|
committer | Tom Ryder <tom@sanctum.geek.nz> | 2013-09-14 17:45:15 +1200 |
commit | 927bfac29d8ee472f3a1be8b9be021c87bcb61ed (patch) | |
tree | 32cde2e92e6e12b7bdbf951d2ccf6935acae7985 | |
parent | Remove unnecessary variable bracing (diff) | |
download | psshd-927bfac29d8ee472f3a1be8b9be021c87bcb61ed.tar.gz psshd-927bfac29d8ee472f3a1be8b9be021c87bcb61ed.zip |
Quoting unneeded in unary/lhs [[
-rwxr-xr-x | psshd | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -48,7 +48,7 @@ done shift $((OPTIND-1)) # If no port, give up with usage instructions -if ! [[ "$port" ]]; then +if ! [[ $port ]]; then printf 'USAGE: %s -p <port number> -- <ssh arguments>\n' "$self" exit 1 fi |