Display single column Unicode characters in one column.
[nvi.git] / dist / recover.in
blob9579eeae7a42efe7f9c662d21d1954cdced0682b
1 #!/bin/sh -
3 # $Id: recover.in,v 8.8 1996/10/10 21:15:37 bostic Exp $ (Berkeley) $Date: 1996/10/10 21:15:37 $
5 # Script to recover nvi edit sessions.
7 RECDIR="@vi_cv_path_preserve@"
8 SENDMAIL="@vi_cv_path_sendmail@"
10 echo 'Recovering nvi editor sessions.'
12 # Check editor backup files.
13 vibackup=`echo $RECDIR/vi.*`
14 if [ "$vibackup" != "$RECDIR/vi.*" ]; then
15 for i in $vibackup; do
16 # Only test files that are readable.
17 if test ! -r $i; then
18 continue
21 # Unmodified nvi editor backup files either have the
22 # execute bit set or are zero length. Delete them.
23 if test -x $i -o ! -s $i; then
24 rm $i
26 done
29 # It is possible to get incomplete recovery files, if the editor crashes
30 # at the right time.
31 virecovery=`echo $RECDIR/recover.*`
32 if [ "$virecovery" != "$RECDIR/recover.*" ]; then
33 for i in $virecovery; do
34 # Only test files that are readable.
35 if test ! -r $i; then
36 continue
39 # Delete any recovery files that are zero length, corrupted,
40 # or that have no corresponding backup file. Else send mail
41 # to the user.
42 recfile=`awk '/^X-vi-recover-path:/{print $2}' < $i`
43 if test -n "$recfile" -a -s "$recfile"; then
44 $SENDMAIL -t < $i
45 else
46 rm $i
48 done