home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / unix / volume25 / finger / part01 / DIFFALL < prev    next >
Text File  |  1992-04-03  |  515b  |  20 lines

  1. #!/bin/sh
  2. # diff any files with emacs backup files
  3. # Copyright (C) 1989, 1990  Philip L. Budne
  4. #
  5. # This file is part of "Phil's Finger Program".
  6. #
  7. # This program is free software; you can redistribute it and/or modify
  8. # it under the terms of the GNU General Public License as published by
  9. # the Free Software Foundation; either version 1, or (at your option)
  10. # any later version.
  11. #
  12.  
  13. # $Id: DIFFALL,v 3.0 90/07/06 13:09:43 budd Rel $
  14.  
  15. for x in *.orig; do
  16.     y=`basename $x .orig`
  17.     echo $y
  18.     diff -c $x $y >$y.diff
  19. done
  20.