termux-api: Remove empty lines from -h output
[termux-packages] / packages / termux-api / termux-battery-status
1 #!/bin/sh
2 set -e -u
3
4 SCRIPTNAME=termux-battery-status
5 show_usage () {
6 echo "Usage: $SCRIPTNAME"
7 echo "Get the status of the device battery."
8 exit 0
9 }
10
11 while getopts :h option
12 do
13 case "$option" in
14 h) show_usage;;
15 ?) echo "$SCRIPTNAME: illegal option -$OPTARG"; exit 1;
16 esac
17 done
18 shift $(($OPTIND-1))
19
20 if [ $# != 0 ]; then echo "$SCRIPTNAME: too many arguments"; exit 1; fi
21
22 @TERMUX_API@ BatteryStatus