Timeline for How to download CSV via terminal (SSH)?
Current License: CC BY-SA 4.0
Post Revisions
12 events
| when toggle format | what | by | license | comment | |
|---|---|---|---|---|---|
| S Oct 22, 2019 at 14:17 | history | suggested | Viktor | CC BY-SA 4.0 |
formatting
|
| Oct 22, 2019 at 13:19 | review | Suggested edits | |||
| S Oct 22, 2019 at 14:17 | |||||
| Oct 18, 2013 at 17:27 | vote | accept | TonyW | ||
| Oct 18, 2013 at 16:27 | answer | added | ssssteffff | timeline score: 8 | |
| Oct 18, 2013 at 16:19 | comment | added | ssssteffff |
use either curl -o outputfile.csv http://path/to/file or curl http://path/to/file > outputfile.csv. -o <file> Writes output to <file> instead of stdout, -O Writes output to a local file named like the remote file we get.
|
|
| Oct 18, 2013 at 16:04 | review | Close votes | |||
| Feb 7, 2014 at 3:03 | |||||
| Oct 18, 2013 at 16:00 | comment | added | TonyW | yes, I tried my own way, but because the file is so big. I don't know whether it works until the download finishes. I didn't see any errors when I do curl -O data.cityofchicago.org/api/views/ijzp-q8t2/… > Chicago.csv | |
| Oct 18, 2013 at 15:57 | comment | added | paulsm4 |
Use either -O localfilename or > localfilename, not both.
|
|
| Oct 18, 2013 at 15:54 | comment | added | Brian | btw, you're above works... but it took AGEEES to get going... | |
| Oct 18, 2013 at 15:53 | comment | added | bouteillebleu | Have you tried the curl command you suggested? If so, did you get any errors? | |
| Oct 18, 2013 at 15:53 | answer | added | Tippa Raj | timeline score: 3 | |
| Oct 18, 2013 at 15:48 | history | asked | TonyW | CC BY-SA 3.0 |