#!/bin/sh
module="silly"
device="silly"

# invoke rmmod with all arguments we got
/sbin/rmmod $module $* 2>/dev/null|| exit 1

# Remove stale nodes

rm -f /dev/${device}b /dev/${device}w /dev/${device}l /dev/${device}cp





