ch1+2. Intro and Basic Tasks Flashcards
(42 cards)
What shell does the course focus on?
Bash Shell
What does Bash stand for?
Bourne Again Shell
What are the parts of a Bash shell command?
Command, Options, Argument
Is the linux CLI case sensitive?
Yes
VIM
Linux pre-installed text editor
VIM insert command
-i
VIM command to exit ‘insert’
esc
VIM command to save and exit
‘:wq’
What key to auto-complete commands?
tab
What does bold text in a command manual signify?
Type exactly as shown
What does italic text in a command manual signify?
Replace with appropriate argument.
What are ’-abc’ ?
Options
What are ‘-a|-b’ ?
Either/Or options
What does ‘man -a command’ do?
Finds matching queries inside the manual of the command.
What does ‘man -D command’ do?
Prints debugging information on the command.
What does ‘man -f command’ do?
Short command description.
What does ‘man -h command’ do?
Prints help options.
What does ‘man -k .’ do?
Prints all manual pages where ‘.’ is a regex for any character. You could also search for other strings.
Key to reach the top of a man page?
Home key
Key to reach the bottom of a man page?
End key
Keys to move up or down on a man page?
Page up - Page down
In a man page, what key can begin a search?
/ or a forward slash
In a search of a man page, what key can move to the next occurrence of the search?
n
In a search of a man page, what key can navigate to the previous occurrence of the search string?
‘p’