Basic Terminal command
Basic
cd route
ls list
pwd show current path
cat concatenate and print file (usually as read file)
touch change file access and modification time; (usually as create file)
Routing
cd <directory>
cd . current
cd .. last
cd ~ home
cd / root
List
ls
ls -a list all included hiding file
ls -l list detail
Move & Copy
cp <name1> <name2> copy
mv <name1> <name2> rename
move one file within this directory to another name.

