Se você deseja classificar / testar a exclusividade do campo primeiro especificamente, e seu sistema tem a versão GNU coreutils
de sort
, então eu acho que você poderia usar apenas
sort -nu file
viz.
$ sort -nu file
123 some text
334 some other text
341 more text
De info coreutils 'sort invocation'
The commands
sort -u
andsort | uniq
are equivalent, but this equivalence does not extend to arbitrarysort
options. For example,sort -n -u
inspects only the value of the initial numeric string when checking for uniqueness, whereassort -n | uniq
inspects the entire line.