dotfiles/lib/helper/rm_link
James Patrick 6c3787ef1b Refactored to use .ONESHELL
This makes it a hell of a lot simpler but will lose support for BSD
make. All effected machines are running gnu-make, so the cost benefit
ratio ways heavily in favor of doing this.
2020-03-09 13:37:50 -04:00

23 lines
376 B
Bash
Executable File

#! env zsh
# -*- sh -*-
REPORT=`dirname $0`/report
if [[ -z $1 ]] ; then
$REPORT error "ERROR: Symlink to delete does not exist.\n symlink: $1"
exit
fi
if ! ( [[ -e $1 ]] || [[ -L $1 ]] ) ; then
$REPORT warn "$1 does not exist."
exit
fi
if [[ ! -L $1 ]] ; then
$REPORT warn "$1 is not a symbolic link. Skipping."
exit
fi
$REPORT pass "Deleting $1"
rm $1