I'm using git bash as my command line interface in my working environment.
Is there a wget
command available for windows 8.1?
You can use curl instead of wget.
curl http://www.google.com/
Windows 8.1 PowerShell has both the wget and the curl commands.
The both perform identically as if they are synonyms for each other.
Example - to retrieve http://www.sdsolarblog.com/montage/show.html
PS C:/users/Admin> curl http://www.sdsolarblog.com/montage/show.html
or
PS C:/users/Admin> wget http://www.sdsolarblog.com/montage/show.html
Here is what it looks like in practice:
-outfile
option like so:PS C:/users/Admin> curl http://www.sdsolarblog.com/montage/show.html -outfile show.html
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With