Inccluded are the following:
1. Syntax
2. Files
3. Internet
4. Process
5. Help
6. Rights
# get files
ls
# get files incl rights
ls -l
# get all files incl hidden
ls -a
# get dirs and subdirs
ls -R
## current directors
pwd
## up or down dir
cd dirname
cd ..
## go to home
cd ~
cd $home
# ln
# alias
#OS X has long offered aliases, which let you create links to files, folders, and applications elsewhere in the system without having to duplicate them
ln -s file1/folder2 file2/folder2
# manual
# like vim, quit :q
man cp
# killall
# kill dock procs
killall dock
# defaults
#This command is often used in Terminal tips and tricks to tweak applications and system settings via their preference files.
defaults
# see rights of files
ls -l
# see chmod rights
# todo
# perform task as admin
sudo task...
chflags
# change flags on file
chmod
# change rights on file