17 commands available
lsdirectory listing (list all files/folders on current dir)
ls -lals -lformatted listing
ls -lls -laformatted listing including hidden files
ls -lacd dirchange directory to dir (dir will become directory name)
cd Documentscd..change to parent directory
cd..cdchange to home directory
cdpwdshow current directory
pwdmkdir dircreate a directory dir
mkdir myprojectrm filedelete file
rm document.txtrm -f dirforce remove file
rm -f oldfile.txtrm -r dirdelete directory dir
rm -r myfoldercp file1 file2copy file1 to file2
cp backup.txt backup2.txtmv file1 file2rename file1 to file2
mv oldname.txt newname.txttouch filecreate or update file
touch newfile.txtcat fileoutput contents of file
cat readme.txtcat > filewrite standard input into file
cat > newfile.txttail -f fileoutput contents of file as it grows
tail -f logfile.txt