diff options
author | Tom Ryder <tom@sanctum.geek.nz> | 2013-09-14 17:05:07 +1200 |
---|---|---|
committer | Tom Ryder <tom@sanctum.geek.nz> | 2013-09-14 17:42:03 +1200 |
commit | 3b8ad3c19cd5f3f92b8bf68e0a198f23e8ad38f0 (patch) | |
tree | c90a0abe78e4bfb8dc9a9f61189f67b4e4916ec6 | |
parent | Change text syntax for port presence (diff) | |
download | psshd-3b8ad3c19cd5f3f92b8bf68e0a198f23e8ad38f0.tar.gz psshd-3b8ad3c19cd5f3f92b8bf68e0a198f23e8ad38f0.zip |
No need to quote arithmetic context
-rwxr-xr-x | psshd | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -45,7 +45,7 @@ while getopts ':p:' opt; do ;; esac done -shift "$((OPTIND-1))" +shift $((OPTIND-1)) # If no port, give up with usage instructions if ! [[ "$port" ]]; then |