You want to filter the syslog file named “test” for only the entries that contain either “kernel” or
“panic”. Which command do you use?
A.
show log test | find kernel | find panic
B.
show log test | find “kernel | panic”
C.
show log test | match kernel | match panic
D.
show log test | match “kernel | panic”
Explanation:
show log test | match “kernel|panic”