mkdir CS206 cd CS206 mkdir LAB3I usually name my folders with all caps so I can recognise them as folders easily, but that is my own style choice.
If you are not using the terminal within VSC, use cd to move through your directory structure to get to the directory containing your code.
ls
If you do not see a listing of files that at least includes ReadMe (from an earlier step), you are not in the right place.
Copying files is pretty easy. Especially if you want to copy all of the files in a directory. You can do this with a single command.
scp * YOUR_UNIX_NAME@165.106.10.186:CS206/LAB3/
If you want to copy just one file, for instance ReadMe,
scp ReadMe YOUR_UNIX_NAME@165.106.10.186:CS206/LAB3/
Note that CS206 and LAB3 are both names you created in an earlier step. If you made different names, substitute appropriately.
First, do a quick check. In this case, just make sure the files yo copies are there. To do so, just get a listing of the contents of the LAB3 directory.
ls LAB3
Assuming that directory contains at least the ReadMe file, you are good. For assignment submissions, you might want to comfirm that you program compile abd runs correctly on UNIX. To do so (assuming that the main class of your program is named XXXX and that it is in the directory LAB3 ):
cd LAB3
javac XXXX.java
java XXXX
cd ..
Once in the correct directory and you have confirmend that yo are really ready to go, execute the following command
/home/gtowell/bin/submit -c 206 -p 1 -d LAB3
Briefly, this says to submit the entire contents of the directory LAB3 for course number 206 as project number 1.
The output you see from the submit program should look similar to this
gtstudent@home:~$ /home/gtowell/bin/submit -c 206 -p 1 -d tmp
CS Submission System Spring 2021
Submitting Project 1 for CMSC206 with gtowell
Creating archive for submission...
tmp/
tmp/ReadMe
tmp/Tester.AUXJ.tmp
tmp/hello
Submitting archive...
Submission complete! Submission timestamp is 2021-02-19-08-46-20-EST.
If you do not see the Submission Complete! message, then something failed.
You can use submit> multiple times. I will only grade your final submission, unless you tell me otherwise. (In past years, I have had people submit up to 6 times. Among other things, submit puts a timestamp on your file, so I know when it arrived.
This is the exact process you will use to submit all homework. The only significant difference for homework submission will be that the project number and directory name will change.