openbsd-ports/emulators/vmware/3/files/vmware-vmnet_unload.sh
2005-03-07 18:15:09 +00:00

15 lines
198 B
Bash

#!/bin/sh
# $OpenBSD: vmware-vmnet_unload.sh,v 1.3 2005/03/07 18:15:09 todd Exp $
dev=/dev/vmnet
rm=/bin/rm
for i in 0 1 2 3
do
if [ -c "$dev""$i" ]; then
$rm -f "$dev""$i"
fi
done
exit 0