curl or wget to stdout

11 Jun '17

I’m used to having curl available on machines, but occasionally there’s only wget installed. These two commands do the same thing:

$ curl -sL $URL > blah
$ wget -qO - $URL > blah

sysadmin

Newer Older