First Commit

This commit is contained in:
2018-06-21 22:49:50 -05:00
commit af15154277
134 changed files with 23594 additions and 0 deletions

27
mkusb Executable file
View File

@ -0,0 +1,27 @@
#!/bin/bash
echo -n "Input path to ISO file (full path starting with /): "
read iso
echo
echo -n "Input thumb drive device (i.e /dev/sdx): "
read device
echo
echo -n "Warning: This will wipe the contents of your thumb drive
continue?(y/n): "
read continue
if [ "$continue" = "y" ]
then echo "Writing blocks to device, this may take several minutes..."
sudo dd bs=4M if=$iso of=$device
echo "Finished writing blocks to device!"
exit 0;
elif [ "$continue" = "n" ]
then exit 0;
fi