You have a parts list, and you need to search it for all parts that contain the string V1 or the string R3. You
decide to use a grep utility to search the file. Which grep command will you use?
You need to find all files in your home directory hierarchy that contain the string sample in the file name. You
want a relative path to each file so you can easily retrieve it. Choose the command that will find these files.
Wally is searching for the PID of the syslog process on his system. He uses the following command:
$ pgrep syslogd
Choose the answer that describes the outcome of this command.
Frank is the administrator of the site where you work. You notice Frank issues the following command:
# kill -HUP `cat /usr/local/apache2/logs/httpd.pid`
Choose the answer that best describes what this command will do.
Val is searching through a file using the following egrep command:
$ egrep '3+' ./customer-data
Choose the answer that best describes what the result of this search will be.
Val has invoked the following command, to gather information about the data stored in her home directory.
$ du -sk * | sort -n | tail > file2
Which answer is correct concerning this command line?