data/method/busybox/busybox-1.36.0/testsuite/hostid/hostid-works

7 lines
108 B
Plaintext
Raw Normal View History

2024-01-29 10:44:43 +08:00
h=x$(busybox hostid)
# Is $h a sequence of hex numbers?
case "$h" in
x*[!0-9a-f]*) false;;
*) true;;
esac