Action

Command

Go To Up

cd ..

Go To /home/theFolder

cd /home/theFolder

Show inside /home/theFolder

ls /home/theFolder

Create Folder theFolder

mkdir theFolder

Delete Folder theFolder

rm -rf theFolder

Copy theFolder to /home

cp -r theFolder /home/theFolder

Change Permission of theFolder

chmod a+rwx theFolder

Login as root

su

Execute theFile.sh

./theFile.sh

Where is theFolder

whereis theFolder

Find at theFile at theFolder

find /theFolder -name theFile

Find at theFile

find / -name theFile

Extract to current directory

tar -zxvf archive-name.tar.gz

32 bit or 64 bit

uname -a

Search text inside the folder

grep -rl "theText" *