Skip to content

Latest commit

 

History

History
16 lines (14 loc) · 947 Bytes

awk.org

File metadata and controls

16 lines (14 loc) · 947 Bytes

Examples

# https://stackoverflow.com/questions/31528739/alternative-to-uniq-c-and-sort-in-pure-awk/31529391
awk 'BEGIN{PROCINFO["sorted_in"]="@val_num_asc"} { a[$1]++ } END{for (ip in a)print a[ip],ip}' access.log