minix/etc/devmand/scripts/singlechar

14 lines
145 B
Plaintext
Raw Normal View History

2012-06-05 12:49:50 +02:00
#!/bin/sh
if [ "$1" = up ];
then
mknod /dev/$2 c $3 0
elif [ "$1" = down ];
then
rm /dev/$2
elif
[ "$1" = clean ];
then
rm -f /dev/$2*;
fi