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?
