Help for this page

Select Code to Download


  1. or download this
    % perl -lane 'print grep !$s{$_}++, @F'
    one two two three
    ...
    % perl -lane '$,=$"; print grep !$s{$_}++, @F'
    one two two three
    one two theee