Term
|
Definition
|
|
Term
list File types and what does it show for each type |
|
Definition
ls -F / for directories * for executable @ for symbolic links nothing for text files |
|
|
Term
display file size in human readable format |
|
Definition
ls -lh -l to show file size -h to make it human readable |
|
|
Term
display the long listing of a directory name but not the contents |
|
Definition
|
|
Term
display the contents of a directory and all of its sub-directories |
|
Definition
|
|
Term
list files sorted by date, newest first |
|
Definition
|
|
Term
list files sorted by date, oldest first |
|
Definition
|
|
Term
display files with detailed information, oldest first |
|
Definition
|
|
Term
display files with detailed information, sorted by date, newest first |
|
Definition
|
|
Term
display the current directory |
|
Definition
|
|
Term
go back to the home directory - two answers |
|
Definition
|
|
Term
go to the dir1 sub-directory of the home directory |
|
Definition
|
|
Term
go to the home directory of user2 |
|
Definition
|
|
Term
switch to the previous directory |
|
Definition
|
|
Term
display the pseudo terminal where you are logged in |
|
Definition
|
|
Term
display all current logged in users |
|
Definition
|
|
Term
display the name of the current user |
|
Definition
|
|
Term
|
Definition
|
|
Term
dislay detailed information about who is logged in to the machine |
|
Definition
|
|
Term
display the name of the first user to log in |
|
Definition
|
|
Term
you have used su to switch users several times, display the username of the initial login |
|
Definition
|
|
Term
|
Definition
|
|
Term
|
Definition
|
|
Term
display all the system information |
|
Definition
|
|
Term
|
Definition
|
|
Term
remove the text from the screen |
|
Definition
|
|
Term
display the date and time, also to make a change |
|
Definition
|
|
Term
display a calendar for the current month |
|
Definition
|
|
Term
display the date and time based on the hardware clock |
|
Definition
|
|
Term
what is the path of a command (ex: cat) |
|
Definition
|
|
Term
find the location of a command (ex: cat) |
|
Definition
|
|
Term
display the lines, words, and character counts(or bytes) of a file |
|
Definition
|
|
Term
print the line count, word count, byte count, and character count for the file file1 |
|
Definition
wc -l file1 wc -w file1 wc -c file1 wc -m file1 |
|
|
Term
send a message to all logged in users - how does it work |
|
Definition
wall start typing ctrl+d to send the message |
|
|
Term
show the instructions for the cat command |
|
Definition
|
|
Term
how do you search forward for the word "text" in a man page |
|
Definition
|
|
Term
how do you search backwards for "text" in a man page |
|
Definition
|
|
Term
you've searched for "text" in a man page, now find the next instance and the previous instance |
|
Definition
|
|
Term
you are viewing a man page, move forward one page, backward one page |
|
Definition
f/space/Page down b/Page up |
|
|
Term
perform a command keyword search for password - two answers |
|
Definition
man -k password apropos password |
|
|
Term
who the help page for passwd |
|
Definition
|
|
Term
display the short description for the command passwd - two answers |
|
Definition
whatis passwd man -f passwd |
|
|