In this lab, you practice the basic shell commands and tools that you will use when programming.
Try to be familar with man page (ie. man ls).
For the this lab, you should:
# gedit helloworld.cc
Compile the code.
# g++ -o test helloworld.cc
Run and test the compiled binary.
# ./test
Change the permission of the binary to inexecutable.
# chmod a-x test
# ./test
Make a tarball for submission.
# tar -cf L1.tar L1
Submit your file and check your submission. (checkin/peek/grade)
# ~cs253/bin/checkin L1R# L1.tar
# ~cs253/bin/peek L1R#