dotfiles/.local/bin/scripts/update-e2b

15 lines
581 B
Bash
Executable File

#!/bin/sh -e
# Update an Easy2Boot USB Stick after adding ISOs
# Call with Linux ISOs to be copied as args
# Need to be around E2B mountpoint if it is not the default
if ! dir="$(find . "${MNT:-${XDG_RUNTIME_DIR}/mnt}" -maxdepth 3 -name _ISO -type d | grep .)"
then echo "Please mount your multiboot stick first!"
exit 1
fi
test $# -eq 0 || mv -vi "$@" "$dir/LINUX"
find "$dir" -iname "*32-*.iso" -exec mv -vi {} {}def32 \;
find "$dir" -iname "*.iso" -exec mv -vi {} {}def64 \;
drive=$(mount | grep "$(basename "$dir")" | cut -d' ' -f1)
sudo umount $drive
sudo udefrag $drive