Command that lists the last certain number of commands. history history -E {all commands sort by date and time} history [x] { List of last x number of commands by using a number } Command line shortcuts: Shortcut Description CTRL + R search for command that we entered on terminal CTRL + P shows the previously run command Copy files and Directories: cp [ NAME OF FILE 1 ] [ NAME OF FILE 2 ] {copy a file into another file} cp [ NAME OF FILE ] [ NAME OF DIRECTORY ] {copy files into directories} Move files and directories: mv [ NAME OF FILE 1 ] [ NAME OF FILE 2 ] { if the second file doesn’t exist, the first file is renamed as the second file } mv [ NAME OF DIRECTORY 1 ] [ NAME OF DIRECTORY 2 ] { f the second directory does not exist then the first directory is simply renamed } Command to select command from history ! <command number> Remo...