Identation

This commit is contained in:
MatMoul 2023-12-06 00:23:02 +01:00
parent 9d737c255b
commit 2c72645195

8
sshrm
View File

@ -4,10 +4,10 @@ declare -r FILENAME="${HOME}/.ssh/known_hosts"
declare HOST=""
if [ ! "${1}" == "" ]; then
case ${1} in
*[!0-9]*) HOST=$(sed -n -e "${1}"p "${FILENAME}" | awk '{print $1}') ;;
*) HOST=${1} ;;
esac
case ${1} in
*[!0-9]*) HOST=$(sed -n -e "${1}"p "${FILENAME}" | awk '{print $1}') ;;
*) HOST=${1} ;;
esac
ssh-keygen -R "${HOST}"
else
echo "Error: No IP or line number provided !"