2 lines
104 B
Bash
Executable file
2 lines
104 B
Bash
Executable file
#!/bin/bash
|
|
cat $1 | cut -d ] -f 2 | cut -d \" -f 2 | cut -d " " -f 2 | sort | uniq -c | sort -n | less
|