ch1+2. Intro and Basic Tasks Flashcards
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.