Comments on: 12 Useful Wget Command Examples in Linux https://www.linuxtechi.com/wget-command-practical-examples/ Sat, 31 Jul 2021 05:52:39 +0000 hourly 1 By: Seli https://www.linuxtechi.com/wget-command-practical-examples/#comment-177 Thu, 31 Mar 2016 12:23:09 +0000 http://www.linuxtechi.com/?p=2558#comment-177 In reply to Filip.

Pradeep should include this in his examples, as this was the exact one I was looking for. I noticed something was running on our system under wget -qO- -O and I couldn’t figure out if this was a typo or what, so thanks for clearing it up for me. Took a lot from this, just wish it was more expansive!

]]>
By: Filip https://www.linuxtechi.com/wget-command-practical-examples/#comment-176 Wed, 01 Oct 2014 22:15:36 +0000 http://www.linuxtechi.com/?p=2558#comment-176 Another useful example – download and extract archive to specific directory
wget -q -O – ‘http://wordpress.org/latest.tar.gz’ | tar -xzf – –strip 1 -C /path/to

]]>