Skip Menu |

This queue is for tickets about the App-perlbrew CPAN distribution.

Report information
The Basics
Id: 63692
Status: open
Priority: 0/
Queue: App-perlbrew

People
Owner: Nobody in particular
Requestors: blue [...] thisisnotmyrealemail.com
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: curl -o -
curl requires '--output -' or '-o -' to indicate the response should be piped to STDOUT. if you have a .curlrc config file with 'remote-name-all' and 'remote-header-name' it will fail because it writes the output to a local file instead.
From: justincase [...] yopmail.com
On Tue Dec 07 01:24:53 2010, blue wrote: Show quoted text
> curl requires '--output -' or '-o -' to indicate the response should be > piped to STDOUT. > > if you have a .curlrc config file with 'remote-name-all' and > 'remote-header-name' it will fail because it writes the output to a > local file instead.
I just got bit by this as well. Calling curl with '-q' should solve this: -q If used as the first parameter on the command line, the curlrc config file will not be read and used. See the -K/--config for details on the default config file search path.
Subject: WGETRC
From: justincase [...] yopmail.com
Calling wget like `WGETRC=/dev/null wget ...` will also take care of the case when there is a .wgetrc, though the system wgetrc will still be used if it exists: http://www.gnu.org/software/wget/manual/wget.html#Wgetrc-Location