#!/bin/sh

fchar=`echo $0 | cut -c1`
if [ $fchar != '/' ]
then
        echo "uncurrent must be called as full path name"
        exit 1
fi
ROOT=`echo $0 | sed 's/\/ups\/uncurrent//'`
rc=$?
if [ $rc -ne "0" ]
then
        echo "sed failed, return code is $rc"
        exit $rc
fi

location=/usr/local/bin
                              
echo "Removing files from flp product"

# The following commands are split in case future 
# versions support flpq and flpk as links to flpr
# The order may become important.

rm -f $location/flpq $location/flpk
rm -f $location/flpr

