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

5
wipe.sh Normal file
View file

@ -0,0 +1,5 @@
#!/bin/sh
# vim: filetype=bash
serial=${1:-$(gum input --placeholder "Serial")}
flatpak run org.mozilla.firefox -- "https://bulldog.burrburton.org/devices/devices.php?quick_filter=$serial&quick_filter_operation=Contains&order%5B0%5D=aid&serial=$serial&mode=wipe"