🤦‍♀️ didn't notice 🤦‍♀️

This commit is contained in:
yurisuki 2019-04-21 16:06:26 +02:00 committed by GitHub
parent 139fd2894f
commit ca4bef84df
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -31,7 +31,7 @@ echo "$drives"
echo -e "\n\nWhich one do you want to use? (/dev/sdb)" echo -e "\n\nWhich one do you want to use? (/dev/sdb)"
read chosen read chosen
[ "$chosen" = "" ] && echo lol || check2 [ "$chosen" = "" ] && chosen="/dev/sdb" && check2 || check2
} }
check2() { check2() {
@ -59,6 +59,7 @@ fi
burn() { burn() {
clear clear
echo "$image is $(du -bsh $image | awk '{print $1}')s"
sudo dd bs=4M if=$image of=$chosen status=progress oflag=sync sudo dd bs=4M if=$image of=$chosen status=progress oflag=sync
} }