Y
Hacker News
new
|
ask
|
show
|
jobs
by
wookietrader
4934 days ago
I don't have any output. No url is returned. :( Idea sound pretty cool, I'd use it.
1 comments
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
link
niggler
4934 days ago
You don't need cat:
<myfile.csv sed 's/,/ /g' | ...
link
mrud
4934 days ago
sed 's/,/ /g' myfile.csv | ... works as well
link
cat myfile.csv | sed 's/,/ /g' | curl --data-binary @- datafart.com