home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 22 gnu / 22-gnu.zip / gnuawk.zip / awklib / eg / prog / histsort.awk < prev    next >
Text File  |  1997-03-15  |  285b  |  15 lines

  1. # histsort.awk --- compact a shell history file
  2. # Arnold Robbins, arnold@gnu.ai.mit.edu, Public Domain
  3. # May 1993
  4.  
  5. # Thanks to Byron Rakitzis for the general idea
  6. {
  7.     if (data[$0]++ == 0)
  8.         lines[++count] = $0
  9. }
  10.  
  11. END {
  12.     for (i = 1; i <= count; i++)
  13.         print lines[i]
  14. }
  15.