Topic3: GNU and Unix Commands Flashcards
South Columbus
1: Master Bathroom Toilet
effect of the egrep command when using the -v option
outputs non-matching lines
2 : Master Bathroom Bath
with FHS what directory are man pages found
/usr/share/man
3: Master Bath Round Mirror 1
file in user home directory used to store Bash history
.bash_history
4: Master Bath Sink 1
Bash env var defines in which file the user history is stored when the user history is stored when exiting a Bash process
HISTFILE
5: Master Bath Round Mirror 2
user accidentally created subdirectory \dir in his home directory. Which of the following commands will remove the directory?
rmdir ~/\dir
6: Master Bath Sink 2
signal sent to a process when the key combination CTRL+C is pressed on the keyboard
SIGINT
7: Master Bath Window
vi editor how can commands such as moving the cursor or copying lines into the buffer be issued multiple times or applied to multiple rows
by specifying the number right in front of a command such as 4l or 2yj.
8: Master Bath Radiator
Which grep command will print only the lines that do not ed with a / in the file foo.
grep -v ‘/$’ foo
9: Master Bath Door
commands that can be used to determine how long the system has been running
uptime
top
10: Landing outside Master Bath Door
which characters can be combined with a separator string in order to read from the current input source until the separator string, that is on a separate line and without and trailing spaces is reached
«
11: Master Bedroom Closet
cmd will NOT update the modify timestamp on the file /tmp/myfile.txt
file /tmp/myfile.txt
12: Master Bedroom Window
which commands replace each occurrence of ‘bob’ in the file letter with ‘Bob’ and writes the result to the file newsletter
sed ‘s/bob/Bob/g’ letter > newsletter
13: Master Bedroom Dresser
What does the + symbol mean in the following grep regular expression
grep ‘^d[aei]+d$’ /usr/share/dict/words
Match the preceeding character set ([aei]) one or more times
14: Master Bedroom Dresser
vi editor which cmd will copy the current line into the vi buffer
yy
15: Master Bedroom Master Bedroom Mirror
In Bash, inserting 1>&2 after a cmd redirects
standard output to standard error
16: Master Bedroom Window (facing street)
what command can be used to create a USB storaage media from a disk image
dd
17: Master Bedroom Computer Desk
which of the following commands prints all files and directories within the /tmp directory or its subdirectories that are also owned by the user root
find /tmp -user root -print
find /tmp -user root
18: Master Bedroom door
Command that determines the type of file by using a definition database file that contains information about all common file types
file
19: Crawl Space
default nice level when a process is started using the nice command
10
20: Washer Dryer
editing in vi and file changed due to another process. without exiting vi how can the file be reopened for editing with the new content
:e
21: Stairs
regarding nice -5 /usr/bin/prog what is the current nice level
5
- Living Room Couch 1
cmd searches down a particular number of subdirectories
-maxdepth