28126406d2
and not without ok's and the proper process.
15 lines
198 B
Bash
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
|