Hacker News new | ask | show | jobs
by rossj 4934 days ago
Make sure your numbers are space separated rather than comma separated, you could pipe your data through sed like..

cat myfile.csv | sed 's/,/ /g' | curl --data-binary @- datafart.com

1 comments

You don't need cat:

    <myfile.csv sed 's/,/ /g' | ...
sed 's/,/ /g' myfile.csv | ... works as well