[13:17:18] i13:klausa:~% uname -a
Darwin i13.local 12.4.0 Darwin Kernel Version 12.4.0: Wed May 1 17:57:12 PDT 2013; root:xnu-2050.24.15~1/RELEASE_X86_64 x86_64
[13:17:19] i13:klausa:~% curl
curl: try 'curl --help' or 'curl --manual' for more information
[13:17:22] i13:klausa:~% wget
wget: Command not found.
A demonstration about how OS X ships curl but not wget. Essentially he's just running
which {curl,wget}
to demonstrate that curl is in $PATH where as the shell cannot find wget (since we're talking about base installs it's safe to assume that the aforementioned utilities should be in $PATH by default - if included at all).
Comments
and this is...?
A demonstration about how OS X ships curl but not wget. Essentially he's just running
to demonstrate that curl is in $PATH where as the shell cannot find wget (since we're talking about base installs it's safe to assume that the aforementioned utilities should be in $PATH by default - if included at all).Thanks, that makes sense now.