1 2 3 4 5 6 7 8 9 10 11 12
#!/bin/bash if [ -z "$1" ]; then echo "$0 <host>" exit 1 fi cd "${BASH_SOURCE%/*}" source common/utils.sh remove_known_hosts "$1" exit 0