I am trying to download file using curl, but I get the following error message.
-o: command not found
My command was
curl -o 'saveas.smi'Do I have error with my command?
51 Answer
Your command looks OK, but you also need to quote the URL, like so:
curl ' -o 'saveas.smi' 2