Turnin instructions Log in to the unix machine and go to the directory that contains the file you want to turn in. Once there, type turnin 211-20x filename where x is the number for your section (1 for 201, 2 for 202, etc) and filename is the file you want to turnin. You will have to turn in multiple files. It is recommended to tar or zip them into a single file, for example lab1.tar or lab1.zip, and turn in the zipped or tarred file. Thus, if you are in section 201, your turnin command for lab1 should be turnin 211-201 lab1.tar To see what files you have turned in you can use the command turnin -c 211-201 The tar command: tar -cvf lab1.tar file1.java file2.txt creates lab1.tar that contains file1.java file2.txt To recover the files contained into the tar file use: tar -cvf lab1.tar To list the files contained into the tar file use: tar -tf lab1.tar