Bug
This commit is contained in:
parent
2c72645195
commit
efbb2c0e0c
6
sshrm
6
sshrm
@ -4,9 +4,9 @@ declare -r FILENAME="${HOME}/.ssh/known_hosts"
|
|||||||
declare HOST=""
|
declare HOST=""
|
||||||
|
|
||||||
if [ ! "${1}" == "" ]; then
|
if [ ! "${1}" == "" ]; then
|
||||||
case ${1} in
|
case "${1}" in
|
||||||
*[!0-9]*) HOST=$(sed -n -e "${1}"p "${FILENAME}" | awk '{print $1}') ;;
|
*[!0-9]*) HOST=${1} ;;
|
||||||
*) HOST=${1} ;;
|
*) HOST=$(sed -n -e ${1}p "${FILENAME}" | awk '{print $1}') ;;
|
||||||
esac
|
esac
|
||||||
ssh-keygen -R "${HOST}"
|
ssh-keygen -R "${HOST}"
|
||||||
else
|
else
|
||||||
|
Loading…
Reference in New Issue
Block a user