Cross Reference:
xref
: /
illumos-gate
/
usr
/
src
/
pkgdefs
/
SUNWpppdr
/
r.preserve
Home
History
Annotate
Line#
Navigate
Download
Search
only in
./
r.preserve revision 7c478bd95313f5f23a4c958a745db2134aa03244
#!/
bin
/
sh
#
# Copyright (c) 2000 by Sun Microsystems, Inc.
# All rights reserved.
#
#ident "%Z%%M% %I% %E% SMI"
#
while
read
src
do
if
[ -f
$src
];
then
if
[ -s
$src
];
then
echo
"not removing
$src
"
else
rm
-f
$src
fi
fi
done
exit
0