Tagged Questions
3
votes
1answer
185 views
Extract directory from wget's stdout
I am trying to wget a tarball from github.com and, without creating a temporary file, extract a subdirectory from it:
wget -qO- https://github.com/django-nonrel/django-nonrel/tarball/develop | tar ...
0
votes
1answer
170 views
What is wget idiom for curl -o?
So I use code in some function like
if [ ! -e $DOWNLOADS/$1 ]; then
echo_run curl -L http://$4/$5/$1 -o $DOWNLOADS/$1
fi
I wonder how to acheive same thing with out curl?
3
votes
2answers
352 views
Does -q definitely turn off wget output logging?
I currently have a shell script running on a linux server which is using wget in oder to download a remote web page. This in turn is executed by a cron job which is scheduled to run at certain times.
...
5
votes
3answers
869 views
How to wget Youtube horrible URL
I'm going to wget youtube search page where the URL is horrible. This is example when searching searchkeyword sorted by upload date:
wget ...
1
vote
3answers
412 views
wget batch linux file
I am trying to download images from a manufactures site using WGET. when I run the command from the shell it works fine. But when I run it from a file I am getting a placeholder file.
Here is the ...
2
votes
1answer
724 views
Download and install latest deb package from github via terminal
I would like to download and install the latest .deb-package from github (https://github.com/elbersb/otr-verwaltung/downloads to be exact).
How can I download the latest package (e.g. ...