CS131 - Spring 2007

Syllabus (download) | Syllabus (view)


When handing in multiple files for grading:

create a sub-directory in your login directory: (its name should include the chapter number but NOT be the same as the sub-directory you created)

    pattern: mkdir directoryName

    example: mkdir Prog1

the files you want to submit (including the exercises) can be copied (cp) or moved (mv) into the sub-directory you just created

    pattern: cp fileName directoryName    or    mv fileName directoryName

    example: cp Prog1_3.java Prog1   or   mv Prog1_3.java Prog1

archive the directory you created

    pattern: jar -cvf userName_ChapterNumber.jar directoryName

    example: jar -cvf moconner_1.jar Prog1