Re: Problem with cURL and pipes

2009-08-25 Thread chris
Never mind, cURL bug. ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"

Problem with cURL and pipes

2009-08-24 Thread chris
Hello all, there seems to be something wrong with sending data through pipes. I'm trying to upload files to an FTP server by piping them to cURL: These work: - curl < file-to-send ... - cat file-to-send | curl ... These don't: - gzip < file-to-send | curl ... - bzip2 < file-to-send | curl ...