wget on Mac OS X
By:Roy.LiuLast updated:2019-08-11
By default, there is no wget on Mac OS X.
$ wget http://www-us.apache.org/dist/tomcat/tomcat-8/v8.5.9/bin/apache-tomcat-8.5.9.tar.gz -bash: wget: command not found
On Mac OS X, the equivalent of Linux’s wget is curl -O
$ curl -O http://www-us.apache.org/dist/tomcat/tomcat-8/v8.5.9/bin/apache-tomcat-8.5.9.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 49 9112k 49 4481k 0 0 654k 0 0:00:13 0:00:06 0:00:07 793k
P.S Uppercase alphabet O, not number zero.
Note
If you really like the original wget on Mac OS X, try install with brew
If you really like the original wget on Mac OS X, try install with brew
brew install wget
From:一号门
Previous:Spring Boot SLF4j Logback example
COMMENTS