Home | History | Annotate | Line # | Download | only in sets
checkflist revision 1.3
      1 #! /bin/sh --
      2 #
      3 #	$NetBSD: checkflist,v 1.3 1997/02/18 06:58:56 mikel Exp $
      4 #
      5 # Verify output of makeflist against contents of $DESTDIR.
      6 
      7 [ "$DESTDIR" ] || {
      8 	echo DESTDIR must be set
      9 	exit 1
     10 }
     11 
     12 sh makeflist > /tmp/_CHECK.$$
     13 ( cd $DESTDIR ; find . \( -type d -o -type f -o -type l \) ) | sort | \
     14     diff /tmp/_CHECK.$$ -
     15 /bin/rm -f /tmp/_CHECK.$$
     16