LINUX.ORG.RU

История изменений

Исправление mix_mix, (текущая версия) :

-u Only output lines that are not repeated in the input.

$ echo -e "aaa\naaa\nbbb\nbbb\nccc\nfff\nddd\nddd\nddd" | uniq -u
ccc
fff

Исправление mix_mix, :

-u Only output lines that are not repeated in the input.

$ echo aaa\naaa\nbbb\nbbb\nccc\nfff\nddd\nddd\nddd | uniq -u
ccc
fff

Исправление mix_mix, :

-u Only output lines that are not repeated in the input.

$ echo aaa\naaa\nbbb\nbbb\nccc\nfff\nddd\nddd\nddd | uniq -u < 1
ccc
fff

Исходная версия mix_mix, :

-u Only output lines that are not repeated in the input.

$ echo aaa\naaa\nbbb\nbbb\nccc\nfff\nddd\nddd\nddd > 1
$ uniq -u < 1
ccc
fff