1

I'm having problems removing a file in a bash script. I saw the other post with the same problem but none of those solutions solved my problem. The bash script is an OP5 surveillance check and it calls an Expect process that saves a temporary file to the local drive which the bash script reads from. Once it has read the file and checked its status I would like to remove the temporary file. I'm pretty new to scripting so my script may not be as optimal as it can be. Either way it does the job except removing the file once it's done. I will post the entire code below:

#!/bin/bash

#GET FLAGS
while getopts H:c:w: option
do
case "${option}"
in
        H) HOSTADDRESS=${OPTARG};;
        c) CRITICAL=${OPTARG};;
        w) WARNING=${OPTARG};;
esac
done

./expect.vpn.check.sh $HOSTADDRESS

#VARIABLES
VPNCount=$(grep -o '[0-9]\+' $HOSTADDRESS.op5.vpn.results)

# Check if the temporary results file exists
if [ -f $HOSTADDRESS.op5.vpn.results ]
then
# If the file exist, Print "File Found" message
echo Temporary results file exist. Analyze results.

else # If the file does NOT exist, print "File NOT Found" message and send message to OP5
echo Temporary results file does NOT exist. Unable to analyze.
# Exit with status Critical (exit code 2)
exit 2
fi

if [[ "$VPNCount" > $CRITICAL ]]
then
# If the amount of tunnels exceeds the critical threshold, echo out a warning message and current threshold and send warning to OP5
echo "The amount of VPN tunnels exceeds the critical threshold - ($VPNCount)"
# Exit with status Critical (exit code 2)
exit 2

elif [[ "$VPNCount" > $WARNING ]]
then
# If the amount of tunnels exceeds the warning threshold, echo out a warning message and current threshold and send warning to OP5
echo "The amount of VPN tunnels exceeds the warning threshold - ($VPNCount)"
# Exit with status Warning (exit code 1)
exit 1
else
# The amount of tunnels do not exceed the warning threshold.
# Print an OK message
echo OK - $VPNCount
# Exit with status OK
exit 0
fi

#Clean up temporary files.
rm -f $HOSTADDRESS.op5.vpn.results

I have tried the following solutions:

  • Create a separate variable called TempFile that specifies the file. And specify that in the rm command.

  • I tried creating another if statement similar to the one I use to verify that file exist and then rm the filename.

  • I tried adding the complete name of the file (no variables, just plain text of the file)

I can:

  • Remove the file using the full name in both a separate script and directly in the CLI.

Is there something in my script that locks the file that prevents me from removing it? I'm not sure what to try next.

Thanks in advance!

1 Answer 1

2

When you "exit" it exits, and the last line of your script is not reached.

First solution: move the last line underneath the "echo Temporary results file exist. Analyze results." as it's the place where the file exists and is analysed...

But if you want to erase that file in every cases and don't have a problam with the rm being done in each exit (ie, whatever the cause to exit the program), instead of your last line, define (near the beginning of the script!) a function that gets called when the program exits (using "trap thefonction EXIT" : meaning : call "thefonction" when you EXIT (or the program received ctrl+c)).

function onexit {
   # Your cleanup code here
   rm -f $HOSTADDRESS.op5.vpn.results
}

trap onexit EXIT

But you need to make sure you define the trap at the right time (and that HOSTADDRESS is defined when you do it !)

Note that if you "kill -9" the program it won't have time to use that trap at all (kill -9 is only to be used when the regular kill doesn't work, as it doesn't let the program any time to use cleanup, etc...)

2
  • Thank you so much! I added the rm before every exit code and this solved the problem.
    – Philip.J
    Commented Jun 13, 2014 at 20:14
  • 1
    Ok, cool. But you should realty only delete it in execution paths where it is created. And the advantage of using a trap is that it will also work in case of an external exit (ctrl+c, or if your termibal disconnects) Commented Jun 14, 2014 at 14:03

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .