nt9856x/BSP/busybox/testsuite/hostid/hostid-works
2023-03-28 15:07:53 +08:00

7 lines
108 B
Plaintext

h=x$(busybox hostid)
# Is $h a sequence of hex numbers?
case "$h" in
x*[!0-9a-f]*) false;;
*) true;;
esac