canon-lens/00-logs/proc_historgram
2016-03-21 19:59:04 +03:00

5 lines
110 B
Bash
Executable File

#!/bin/bash
# make histogram of commands/answers
cat $* | awk '{print $2 " " $3}' | sort | uniq -c | sort -n