home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / OL.LZH / PROGS.LZH / UNIQUE.ICN < prev    next >
Text File  |  1991-07-13  |  525b  |  23 lines

  1. ############################################################################
  2. #
  3. #    Name:    unique.icn
  4. #
  5. #    Title:    Filter out identical adjacent lines
  6. #
  7. #    Author:    Anthony Hewitt
  8. #
  9. #    Date:    December 22, 1989
  10. #
  11. ############################################################################
  12. #
  13. #     Filters out identical adjacent lines in a file.
  14. #
  15. ############################################################################
  16.  
  17. procedure main()
  18.    local s
  19.  
  20.    write(s := !&input)
  21.    every write(s ~==:= !&input)
  22. end
  23.