Meet people who work on similar things as you – get help if you need it
Join Siafoo Now
or
Learn More
wget menu -( don't waste an inode. paste onto 1 command line. )
Updated over 2 years ago (18 Feb 2008 at 09:24 PM)
recent activity
| In Brief | A one liner that prompts you for username, password, URL, and Output File. It does not echo your password, and is useful for downloading pr9j. |
| Language | (Ba)sh |
# 's
1/usr/bin/wget --http-user=`read -p "User: " i; echo $i` --http-passwd=`read -s -p "Password: " j; echo $j` -c `read -p "URL: " k; echo $k` -O `read -p "Output file: " l; echo $l`
A one liner that prompts you for username, password, URL, and Output File. It does not echo your password, and is useful for downloading pr9j.
Add a Comment