ko/mknod.sh

7 lines
99 B
Bash
Raw Permalink Normal View History

2023-03-14 11:18:03 +08:00
#!/bin/sh
major=$(cat /proc/devices | grep demo | awk '{print $1}')
2023-03-14 11:18:03 +08:00
mknod /dev/demo c $major 0
2023-03-14 11:18:03 +08:00