Print the 5th word of every line in syslog.log.
`awk '{print $5}'` prints the 5th whitespace-separated field of each line.
Run it on /var/log/syslog.log. The output should contain things like `systemd[1]:`, `sshd[1023]:`, etc.Sign in to save your code and track progress across devices.