blob: 615b12e619c421df4539c166ccefc06dcbccdf15 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/bin/sh
module="shortprint"
device="shortprint"
# invoke rmmod with all arguments we got
rmmod $module $* || exit 1
# Remove stale nodes
rm -f /dev/${device}
|