7 lines
75 B
Text
7 lines
75 B
Text
bash$ # made uniq
|
|
bash$ printf '6\n2\n3\n6\n4\n2\n'|sort -nu
|
|
2
|
|
3
|
|
4
|
|
6
|
|
bash$
|