CS 268 - Assignment Submissions
How to submit your assignments
Please use the following command to submit your assignments:
~cs268/sub_cs268.pl file1 file2 file3 . . .
Alternatively, you may submit it by hand with the following command:
tar cf - file1 file2 file3 . . . | uuencode "homework" | mail "cs268@cs.wvu.edu"
This command combines all of your source files, Makefile, and README
file, converts them into a form suitable for email, and emails it to cs268.
Some restrictions:
- You must include a working Makefile if you have used C/C++ and you have
more than one compilable file.
- You must include a README file that explains the files
and the usage of your programs.
- You must include a script of your program in operation with specific input as given in class. You can create the script using the script command.
- Do not include any binary files.
- Do not include any additional directories.
- Do not include any native code if using Java (JNI).
Please follow this procedure. If you do not follow this procedure
your programs will not be graded!
Todd L. Montgomery (revised 09.16.1999)