in reply to Re^2: Removing repeated wordsin thread Removing repeated words
% perl -lane 'print grep !$s{$_}++, @F' one two two three onetwothree % perl -lane '$,=$"; print grep !$s{$_}++, @F' one two two three one two theee [download]
-Blake