blob: b01f8ed22b87811ada12a877f6428c9c1802c37e [file] [log] [blame]
#!/bin/sh
# A shortcut to print the serial number of this device.
serial=$(sysvar_cmd --get SERIAL_NO)
if [ -n "$serial" ]; then
echo "$serial"
exit 0
else
exit 1
fi