How do I get my code from emacs into the unix server?
I have written some code in emacs, and now I am trying to get it into my directory through a secure shell to my school's unix mainframe. What commands do I need?
the directory is:
~/1730/homework/binder_proj1and the files I need to put in there are:
开发者_Python百科Program1Math.h Program1Math.cpp Program1.cppI know this is probably really simple, but I'm a first-time unix-user and advice would be much appreciated!
Have you checked out scp? Here is the man page for scp and a nice set of examples.
What usually works is something like this...
scp -r ~/1730/homework/binder_proj1 <username>@<server>:/path/to/dest/
精彩评论