0
1
This command works fine
find ~/mypath -name *.fstq -print|xargs curl -u sdd:dsdsd ftp://ftp.dsdd.nsdh.com/sdsds/ -T
but when I add
find ~/mypath -name *.fstq -print|xargs curl -C- -u sdd:dsdsd ftp://ftp.dsdd.nsdh.com/sdsds/ -T
I get an error message
curl: (25) Failed FTP upload: 451
curl: (3) <url> malformed
curl: (3) <url> malformed
curl: (3) <url> malformed
any ideas how I can use resume (-C-) option with this pipe?
1Can you add an "echo" between the | and xargs, to see what command it's actually running? – ed. – 2011-09-16T14:36:34.473