#!/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 -