Reverse grep
list the system log , but not all lines with
‘usb usb2-port2: Cannot enable. Maybe the USB cable is bad?’
in it
cat /var/log/syslog | grep -v ‘usb usb2-port2: Cannot enable. Maybe the USB cable is bad?’
list the system log , but not all lines with
‘usb usb2-port2: Cannot enable. Maybe the USB cable is bad?’
in it
cat /var/log/syslog | grep -v ‘usb usb2-port2: Cannot enable. Maybe the USB cable is bad?’