Section 5: Command Line Flashcards
What is the general order of command syntax?
first word is the command and the rest are the parameters.
What are the two types of parameters?
Start with a dash ( - a, - c or -ac) called options know as switches and arguments that have no leading dashes usually the name of the file/s the command will process.
what the two types of options?
short dash options ex: -a ,-c or -ac (they can be put together) or long dash options which use two dashes and can not be put together –
What is the general command structure?
Command ( what you want it to do) > Option ( How to do it) > Argument ( What to do with it)
What is the benefit of computing?
To simplify repetitive and huge tasks.
Shell allows us automate tasks by using shell scripts
true
What is a shell script?
A file containing a series of commands.
What is a variable?
Areas of memory that can be used to store information and are referred to by a name.
The benefits of a variable are?
Machine code more readable to users, a placeholder for unknown values, can be a value or a command, user doesn’t know value before they execute the program and it will be resolved at execution time.
Should you put spaces in variables?
no
What are the rules for naming variables?
Must start with a letter, a name not contain embedded spaces, no punctuation marks allowed.
How to you print all the environment variables?
printenv
What does an all uppercase variable indicate?
It is an environment variable.
What are meta characters?
characters that are treated differently by the command line ( or are special)
What does the shell use to identify the arguments for a command?
blanks/space are interpreted by the shell as how to separate arguments. More than one blank is still treated as one blank.
What are some examples of meta characters ?
dollar sign $, star *, semi-colon ; , greater than >, question mark ?, ampersand & and the pipe |
What is Quoting?
The act of protecting shell meta-characters from being treated specially by the shell.
What does Quoting do?
It prevents the shell from acting on and expanding the meta-characters.
What is the syntax for quoting?
” “ , ‘ ‘ , or \
What does ~ on the command prompt mean?
Home Directory
What does cd stand for?
Change Directory
What does pwd mean?
Present working directory
What does touch mean?
It creates an empty file with whatever you put in it.
What does ls -la do?
List but with additional details such as permissions, who owns it, file size and when it was created.
What does the option -la mean?
long view attributes
old pwd is a env variable that ..
stores the last directory you were in.
What is the special meaning of the ; meta character?
It is used to separate two characters.
What are Manuel Pages?
A set of pages explaining every command available on the system.
How do you keyword search on manual pages?
man -k ls
If you want to search a specifc keyword in a man page
foreward slash then search term /<searchterm></searchterm>
What is the difference between ls -a and ls–all ?
one is shorthand and one is longhand
What are the advantages of using shorthand options?
Short hand allows for multiple options to be chained together and are quicker to type out.
What are info pages?
more detailed than man pages; divided into different nodes or pages and works like a web browser
How to do you navigate the info pages?
p- previous and n -next and q- back to command line.