mirror of
https://github.com/a2-4am/million-perfect-letters.git
synced 2024-12-27 12:34:11 +00:00
8 lines
106 B
Bash
Executable File
8 lines
106 B
Bash
Executable File
#!/bin/sh
|
|
|
|
awk -F'|' '{print $2}' | \
|
|
tr ',' '\n' | \
|
|
sort | \
|
|
uniq -c | \
|
|
grep -v ' 1 '
|