#!/bin/sh
# 28-07-2017 JvW New script, execute wget command in seperate terminal, return wget result
#
xterm +sb -g 100x9 -title "Downloading dfspuppy.imz" -icon /root/dfsee/linux/home-stick-folder-icon.png -e sh -c 'wget -O '"$1"' '"$2"'; echo $? > wgetrc'
status=$(cat wgetrc)
rm wgetrc 
exit $status
