#!/bin/bash # # this script should allow you to download files to the downloader using wget # and append the download location for said file as well as its filename # # #start: storage="~/downloads/" echo "paste source link: " read X echo "selecting ${x}!" echo "append optional filename" read y echo "setting filenale to ${y}" echo "ready to download" wget ${x} -O $storage/${y} echo "download complete " #goto start: