summarylogtreecommitdiffstats
path: root/99-remove_links
blob: b78ddfd00ae2f12a5e3dbc1fe97d4627d90fe470 (plain)
1
2
3
4
5
6
7
if [[ $DEVNAME ]]; then
	for lnk in $(find /dev -type l -exec ls -al {} \; | grep /dev/$DEVNAME); do
		if [[ $(echo $lnk | awk '{print $11}') == /dev/$DEVNAME ]]; then
			rm -f $(echo $lnk | awk '{print $9}')
		fi
	done
fi