$ sort -u tt.txt 123 133 3243 a b c #### $ perl -ne'$s{$_}++||print' tt.txt a b c 123 3243 133 #### $ perl -nlE'$s{$_}++||say' tt.txt a b c 123 3243 133
## $ perl -ne'$s{$_}++||print' tt.txt a b c 123 3243 133 ##
## $ perl -nlE'$s{$_}++||say' tt.txt a b c 123 3243 133