#!/bin/bash
if test -e /sdcard/smartisan/my-imei.txt; then
    cat /sdcard/smartisan/my-imei.txt;
else
    echo unknown;
fi
