What is the output of the following grep command? grep -F 192.168.1.254 access.log O A. It conducts a search on text fil
Posted: Mon Jul 11, 2022 9:55 am
What is the output of the following grep command? grep -F 192.168.1.254 access.log O A. It conducts a search on text file access.log for all lines containing some variation of the literal string pattern 192.168.1.254 and prints only those lines to the terminal. OB. It generates an error message "grep: invalid option -- 'F' " and returns to the shell prompt O C. It conducts a search on the text file access.log for the first 10 lines containing all variation of the literal string pattern 192.168.1.254 and writes the output to a random file. O D. It adds the literal string pattern 192.168.1.254 to the file access.log.