#!/bin/sh
#

FLIST="netconfig"

echo "About to delete: $FLIST"
echo "Press [Enter] to continue or Ctrl-C to cancel."
read

for FF in FLIST; do
    F1=$(which $FF)
    if [ "$F1" ]; then
	rm -f $F1    
    fi
done

