mirror of
https://github.com/mangosfour/server.git
synced 2025-12-15 01:37:00 +00:00
(based on cipherCOM's repo commit d3d8934) Signed-off-by: VladimirMangos <vladimir@getmangos.com>
8 lines
199 B
Bash
Executable file
8 lines
199 B
Bash
Executable file
if test -e tmp; then unlink tmp; fi
|
|
if test -e tmp2; then unlink tmp2; fi
|
|
cat t.txt | grep '+[a-z|A-Z]' > tmp
|
|
sort tmp | uniq -c > tmp2
|
|
unlink tmp
|
|
sort -n -r tmp2 > uniq.txt
|
|
unlink tmp2
|
|
cat uniq.txt
|