mirror of
https://github.com/opnsense/src.git
synced 2026-04-23 23:28:37 -04:00
15 lines
184 B
Text
15 lines
184 B
Text
|
|
# $FreeBSD$
|
||
|
|
|
||
|
|
i=1
|
||
|
|
r=0
|
||
|
|
while [ $i -lt $((0x100000000)) ]; do
|
||
|
|
t=
|
||
|
|
eval t=\${$i-x}
|
||
|
|
case $t in
|
||
|
|
x) ;;
|
||
|
|
*) echo "Problem with \${$i}" >&2; r=1 ;;
|
||
|
|
esac
|
||
|
|
i=$((i + 0x10000000))
|
||
|
|
done
|
||
|
|
exit $r
|