Linux and MAC terminal windows allow
you to remotely secure (encrypted) copy a file
to or from your local computer to another workstation without
having to first open a connection.
The command to do this from a Linux
workstation is the scp
command.
The operation is called a secure copy.
Windows Users: follow Install Putty and PSCP
/users/deppeler cd programs/practice
scp YOURLOGINHERE@best-linux.cs.wisc.edu:/p/course/cs400-deppeler/public/html-s/code/Hello.java ~/users/deppeler/cs400/programs/practice
To copy the above Hello.java to your current working directory.
cp /p/course/cs400-deppeler/public/students/Hello.java .
Steps
cd /users/deppeler/eclipse-workspace/p1/
scp *.java *.class deppeler@best-linux.cs.wisc.edu:/u/d/e/deppeler/private/cs400/programs/p1/
Reminders for the above example: