Files
dcxajichu 8c24d921b0 support aliyun sdk on TencentOS tiny
sample: examples\aliyun_iotkit_csdk_mqtt
project: board\TencentOS_tiny_EVB_MX_Plus\KEIL\aliyun_iotkit_csdk_mqtt
2019-10-31 16:36:28 +08:00

22 lines
323 B
Bash

#!/bin/sh
usage="Usage: $0 [OPTION]...
--help display this help and exit
--version output version information and exit"
case $# in
1 )
case "z${1}" in
z--help )
echo "$usage"; exit 0 ;;
z--version )
echo "false - @VERSION@"; exit 0 ;;
* ) ;;
esac
;;
* ) ;;
esac
exit 1