The Mostly Harmless USB Disk https://mostlyharmless.io/usb/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

19 lines
245 B

#!/bin/sh
IFS="
"
cd MH-USB/OS/
echo "Downloading OS Images for MH-USB..."
for os in `cat ../../images-list`
do
name=`echo $os | cut -d"|" -f1`
image=`echo $os | cut -d"|" -f2`
echo "Downlaoding: $name"
wget -c $image
done
cd -