Introduction to C++
Jonah Warrenjonah AT parsons DOT edu
http://www.feedtank.com/2005/cpp
UNIX Commands You Need to Know
- ls
this will list the contents of the current directory. - cd directoryname
this will change the current directory you are working in. - mkdir directoryname
this will create a directory. - zip -e destfile filename1 filename2...
this zip up a list of files into a destination file using encryption. It will ask you a password.
e.g. zip -e Homework_01 AsciiArt.cpp - nano filename
this opens a given file in the nano text editor. - emacs filename
this opens a given file in the nano text editor.
- cp sourcefile destfile
this will copy a given file to a new location. - mv sourcefile destfile
this will move a given file to a new location.