84d9c625bf
- Fix for possible unset uid/gid in toproto - Fix for default mtree style - Update libelf - Importing libexecinfo - Resynchronize GCC, mpc, gmp, mpfr - build.sh: Replace params with show-params. This has been done as the make target has been renamed in the same way, while a new target named params has been added. This new target generates a file containing all the parameters, instead of printing it on the console. - Update test48 with new etc/services (Fix by Ben Gras <ben@minix3.org) get getservbyport() out of the inner loop Change-Id: Ie6ad5226fa2621ff9f0dee8782ea48f9443d2091
49 lines
1.2 KiB
Bash
49 lines
1.2 KiB
Bash
#!/bin/sh -
|
|
#
|
|
# $NetBSD: virecover,v 1.1 2013/11/22 16:00:45 christos Exp $
|
|
#
|
|
# @(#)recover.in 8.8 (Berkeley) 10/10/96
|
|
#
|
|
# Script to recover nvi edit sessions.
|
|
|
|
RECDIR="/var/tmp/vi.recover"
|
|
SENDMAIL="/usr/sbin/sendmail"
|
|
|
|
# Check editor backup files.
|
|
vibackup=`echo $RECDIR/vi.*`
|
|
if [ "$vibackup" != "$RECDIR/vi.*" ]; then
|
|
for i in $vibackup; do
|
|
# Only test files that are readable.
|
|
if test ! -f $i || test ! -r $i; then
|
|
continue
|
|
fi
|
|
|
|
# Unmodified nvi editor backup files either have the
|
|
# execute bit set or are zero length. Delete them.
|
|
if test -x $i -o ! -s $i; then
|
|
rm $i
|
|
fi
|
|
done
|
|
fi
|
|
|
|
# It is possible to get incomplete recovery files, if the editor crashes
|
|
# at the right time.
|
|
virecovery=`echo $RECDIR/recover.*`
|
|
if [ "$virecovery" != "$RECDIR/recover.*" ]; then
|
|
for i in $virecovery; do
|
|
# Only test files that are readable.
|
|
if test ! -r $i; then
|
|
continue
|
|
fi
|
|
|
|
# Delete any recovery files that are zero length, corrupted,
|
|
# or that have no corresponding backup file. Else send mail
|
|
# to the user.
|
|
recfile=`awk '/^X-vi-recover-path:/{print $2}' < $i`
|
|
if test -n "$recfile" -a -s "$recfile"; then
|
|
$SENDMAIL -t < $i
|
|
else
|
|
rm $i
|
|
fi
|
|
done
|
|
fi
|