I need to copy a .csv(Comma Separated Values) file from my desktop (running macOS) to an SSH server. I've tried using the scp command, but I keep getting an error saying /Users/jbalkovec/Downloads/WHO-COVID-data.csv: No such file or directory
which is strange since all I did was option clicked
the file and copied the path.
This is the command I am running in the terminal:
scp /Users/jbalkovec/Desktop/WHO-COVID-data.csv jbalkovec@cs1.seattleu.edu:/home/st/jbalkovec/2430CPSC/Projects/A4/
What am I doing wrong? Are there any other methods I could use to transfer the file?
I tried just dragging it from my desktop to the VS Code editor but unfortunately when I try to open it says Unauthorized
. When I run the command it asks for my password (since it the University's server) but then it throws an error No such file or directory
which I am assuming means that bash couldn't find the file right?
I don't really know what tags to put under here, so please don't get mad if some of them are wrong. Thank you.