Files
hackpad/bin/hssh
2015-08-14 12:11:45 -07:00

10 lines
179 B
Bash
Executable File

#!/bin/bash
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
if [ "$#" -le 0 ]; then
cat $DIR/../contrib/ssh_config
exit
fi
ssh -F $DIR/../contrib/ssh_config $@