mirror of
https://github.com/eddyem/canon-lens.git
synced 2026-01-31 12:25:02 +03:00
5 lines
110 B
Bash
5 lines
110 B
Bash
#!/bin/bash
|
|
# make histogram of commands/answers
|
|
|
|
cat $* | awk '{print $2 " " $3}' | sort | uniq -c | sort -n
|