This commit is contained in:
MatMoul 2023-12-06 00:22:00 +01:00
parent 9062a8f1e1
commit 61d0250fd9

14
sshrm Executable file
View File

@ -0,0 +1,14 @@
#!/bin/bash
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
ssh-keygen -R "${HOST}"
else
echo "Error: No IP or line number provided !"
fi