ao-mud is a spellbook of well-commented atomic bash scripts that each do one thing. we are building semantic building blocks for an autonomously-evolving digital spellcasting language.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
!/bin/sh |
|
|
|
read -p "Enter the SSH key: " ssh_key |
|
|
|
# Check if the SSH key is in the correct format |
|
if ! echo "$ssh_key" | grep -E '^ssh-([a-zA-Z0-9]+) ([A-Za-z0-9+/]+=*) ([A-Za-z0-9]+@[A-Za-z0-9]+)?$' > /dev/null; then |
|
echo "Invalid SSH key format." |
|
exit 1 |
|
fi |
|
|
|
echo "Valid SSH key."
|
|
|