BASH Flashcards
What does the up arrow do in Bash?
It shows the last command entered.
In Bash, what key shows the next command (entered in history)?
Down arrow
What key(s) clear the screen?
CTRL + L
What key(s) cancels the command?
CTRL + C
What key(s) will auto-complete a command?
TAB
What command is used to show the manual of any command within the terminal?
man
What key(s) will exit the terminal?
CTRL + D
What command shows the current user who is logged in?
whoami
The command that shows the current date and time.
date
The command that lists the path to the working directory.
pwd
The command that lists directory contents.
ls
The command that lists contents including hidden files.
ls-a
The command that list contents with more info, including permissions.
ls-l