mirror of
https://github.com/eddyem/canon-lens.git
synced 2025-12-06 02:25:15 +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
|