Timothe Litt

Results 69 comments of Timothe Litt

Passive mode is required to get through most firewalls, so this needs a fix. Unfortunately, just adding to the ftp command "-p" won't work. ftp on my linux system doesn't...

> @tlhackque thanks for these notes, the update process is definitely something that could be improved. > > Alternative to using a TXT record to announce the latest version is...

It would be simpler to just install `curl`. `curl` is a well supported tool packaged for pretty much every distribution - so installing it shouldn't be an issue. And much...

I thought I was going to have to use FTP a while ago - but it turned out otherwise. However, below is (untested in `getssl`) code that should fix this....

As I noted on the `curl=users` list, a simpler option is to simply look at the command name in `argv[0]`. (Do check that `argc >= 1`) A user can simply...

> > `curl-v` > > ... it could then be tempting to allow arbitrary command line options like that. If the name contains a dash, parse everything from there as...

Meant to add, specifically you can already do: ```sh alias "curl-O=curl -O" alias "curl-s=curl -s " ``` just like the the very common: ```sh alias rm='rm -i' ``` Don't need...

And one other note: If the default `.curlrc` can't be opened, it's OK to ignore it. The file is optional. However, if the environment variable `CURL_RC` is defined but the...

> I hate to be the one coming up with this, but command aliasing on Windows is still not a universally (or at all?) usable feature. Symlinking used to require...

> We promise compatibility with Windows XP. We don't explicitly say if this is for running curl or building/testing curl, so it's fair to assume it means both. > >...