Skip to content

Latest commit

 

History

History
6 lines (4 loc) · 147 Bytes

Awk.md

File metadata and controls

6 lines (4 loc) · 147 Bytes

AWK usefull snippet

Find IP address:

awk '{match($0,/[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+/); ip = substr($0,RSTART,RLENGTH); print ip}'