mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-01-24 18:42:14 +08:00
14 lines
156 B
Bash
Executable File
14 lines
156 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ -z "$1" ]; then
|
|
exit 1
|
|
fi
|
|
|
|
for f in ${DEVNAME} ${DEVLINKS}; do
|
|
if [ -e "/lib/udev/devices/${f#$1}" ]; then
|
|
exit 0
|
|
fi
|
|
done
|
|
|
|
exit 1
|