Getting Started Flashcards
What is the command to remove a directory and the files it contains?
rm -rf
What is the command to display a banner in the terminal?
banner [word]
What is the command to see which user is currently connected to the system?
who
What is the shortcut to see the list of command starting by a specific string?
[command] and pressing twice the TAB key
What are the commands to research a command that contains a particular string?
man -k [string] and apropos [string]
What is the command to display a little bit of information about a command?
whatis
What are internal commands?
They’re built-in commands of the shell
What are external commands?
They requiered to be installed.
What is the command to clear the history of commands?
history -c