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.

48 lines
1.3 KiB

#!/bin/sh
# 'Spellbook' spell
# This 'spellbook' spell allows you to view and manage your collection of memorized spells.
# To use this spell, simply cast it from any location. You will be presented with a list of spells that are currently memorized in your bashrc file, and a menu of options.
# 'Spellbook' spell function
spellbook() {
# Print a list of memorized spells
echo "Your current memorized spells are:"
spells=$(grep -o "source .*" ~/.bashrc | cut -d " " -f 2)
if [ -z "$spells" ]; then
echo "You have no memorized spells."
else
grep -o "source .*" ~/.bashrc | cut -d " " -f 2 | nl
fi
# Print a menu of options
echo "What do you want to do? "
options="Forget Exit"
select opt in $options; do
case "$opt" in
"Forget")
# Print a menu of spells to forget
echo "Which spell do you want to forget?"
select spell in $spells; do
# Remove the selected spell from the bashrc file
sed -i "\\|$spell|d" ~/.bashrc
break
done
break
;;
"Exit")
# Exit the 'spellbook' spell
break
;;
*)
# Print an error message if the input is invalid
echo "Invalid option. Please try again."
;;
esac
done
}
if [ "$0" = "${BASH_SOURCE[0]}" ]; then
spellbook "$@"
fi