home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Usenet 1994 October
/
usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso
/
unix
/
volume25
/
finger
/
part01
/
DIFFALL
< prev
next >
Wrap
Text File
|
1992-04-03
|
515b
|
20 lines
#!/bin/sh
# diff any files with emacs backup files
# Copyright (C) 1989, 1990 Philip L. Budne
#
# This file is part of "Phil's Finger Program".
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 1, or (at your option)
# any later version.
#
# $Id: DIFFALL,v 3.0 90/07/06 13:09:43 budd Rel $
for x in *.orig; do
y=`basename $x .orig`
echo $y
diff -c $x $y >$y.diff
done