Open main menu

Changes

135 bytes added ,  14:44, 1 February 2017
no edit summary
== Examples ==
; get first column from mw table data
awk '/\|-/{getline;print}' /tmp/terror.txt | sed s/\|// | sed s/'^ *'// | sort -u
 
; see who's trying to SSH into your server (brute force attack)
awk '/Invalid user/ {print $8}' /var/log/auth.log | sort | uniq -c
== Docs ==
4,558

edits