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

  1. #!/bin/sh
  2. IFS="
  3. "
  4. cd MH-USB/OS/
  5. echo "Downloading OS Images for MH-USB..."
  6. for os in `cat ../../images-list`
  7. do
  8. name=`echo $os | cut -d"|" -f1`
  9. image=`echo $os | cut -d"|" -f2`
  10. echo "Downlaoding: $name"
  11. wget -c $image
  12. done
  13. cd -