Help for this page

Select Code to Download


  1. or download this
    sort foo.txt | uniq
    
  2. or download this
    sort -u foo.txt
    
  3. or download this
    % (comm -2 -3 sorted_new.txt sorted_exclude.txt; < dict.txt) | sort -u
    + \
    > tmp
    % mv tmp dict.txt
    
  4. or download this