fix startup logic to work with bash $0 on FreeBSD
1 parent 631404c commit 48405b21b3c02c36b62911182ed558288982956d
@tundra tundra authored on 27 Oct 2016
Showing 1 changed file
View
8
trm.sh
# Run now if invoked directly on the command line. (Otherwise, we're
# just loading the function above into the current shell context.)
#####
 
if [ $(basename "$0") = "trm.sh" ]
# For some reason, bash on FreeBSD returns $0 with a leading "-"
# which breaks the logic if we don't scrub it out here.
 
if [ $(basename $(echo "$0" | sed s/^-//)) = "trm.sh" ]
then
trm "$@"
fi