summaryrefslogtreecommitdiff
path: root/remove-known-host.sh
blob: 9035935ea9e77d0e5a9899b9dc18f7756bab630b (plain) (blame)
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