Command line download in bash with wget, decompress tar.gz2 one linerBy neokrates, written on May 5, 2010 |
bash snippet |
- neokrates
- Email: uwarov@yahoo.com
- Website: http://www.thinkplexx.com
- Join date: 05-31-09
- Posts: 20
Rate it
Ad
Poll
What computer language you specialize in?
- Java (71%, 10 Votes)
- PHP (29%, 4 Votes)
- Scala (0%, 0 Votes)
- Ruby (0%, 0 Votes)
- C# (0%, 0 Votes)
- Basic (0%, 0 Votes)
- Python (0%, 0 Votes)
- C (0%, 0 Votes)
- C++ (0%, 0 Votes)
- Other (0%, 0 Votes)
Total Voters: 14
Loading ...
Most popular search terms:
You can download under Unix using wget "my-full-url".
Example (get me some firefox):
wget "http://download.mozilla.org/?product=firefox-3.5.9&os=linux&lang=en-US";
Often files are tar.gz2-ed, in that case:
wget -O firefox.tar.gz2 "http://download.mozilla.org/?product=firefox-3.5.9&os=linux&lang=en-US";tar -vxjf firefox.tar.gz2
|
TAGS
|
|
SOCIAL
|


















