2022-02-10 15:01:51 +00:00
|
|
|
#!/bin/sh -e
|
2022-01-08 20:47:30 +00:00
|
|
|
# Update an Easy2Boot USB Stick after adding ISOs
|
2022-02-10 15:01:51 +00:00
|
|
|
# Call with Linux ISOs to be copied as args
|
|
|
|
# Need to be around E2B mountpoint if it is not the default
|
2022-03-25 08:14:30 +00:00
|
|
|
dir="$(find . "${MNT:-${XDG_RUNTIME_DIR}/mnt}" -maxdepth 3 -name _ISO -type d | grep .)"
|
|
|
|
test $# -eq 0 || mv -vi "$@" "$dir/LINUX"
|
2022-11-09 11:45:38 +00:00
|
|
|
find "$dir" -iname "*32-*.iso" -exec mv -vi {} {}def32 \;
|
|
|
|
find "$dir" -iname "*.iso" -exec mv -vi {} {}def64 \;
|
2022-03-25 08:14:30 +00:00
|
|
|
drive=$(mount | grep "$(basename "$dir")" | cut -d' ' -f1)
|
2022-01-08 20:47:30 +00:00
|
|
|
sudo umount $drive
|
|
|
|
sudo udefrag $drive
|