can't get_block(NO_DEV) any more
[minix.git] / etc / devmand / scripts / singlechar
blob9b8f0c08c807c9298380533ae9776bff74cb2867
1 #!/bin/sh
3 if [ "$1" = up ];
4 then
5 mknod /dev/$2 c $3 0
6 elif [ "$1" = down ];
7 then
8 rm /dev/$2
9 elif
10 [ "$1" = clean ];
11 then
12 rm -f /dev/$2*;