initial commit

This commit is contained in:
Aleks Rutins 2025-06-05 12:05:10 -04:00
commit 4721569c5d
No known key found for this signature in database
2 changed files with 13 additions and 0 deletions

8
ipadtool.sh Executable file
View file

@ -0,0 +1,8 @@
#!/usr/bin/env bash
while true; do
cmd=$(gum choose wipe exit)
case $cmd in
exit) exit;;
*) source ./$cmd.sh;;
esac
done