canon-lens/00-logs/proc_historgram
2023-03-17 15:27:12 +03:00

5 lines
110 B
Bash

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