1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
#!/bin/sh # # Copyright (c) 2005 by 4Front Technologies # All rights reserved. # # while read src do if [ -f $src ] then if /usr/sbin/pkgchk -p $src then rm -f $src else echo "not removing $src" fi fi done exit 0