termux-api: Start to cleanup api calling scripts
[termux-packages] / packages / termux-api / termux-clipboard-get
CommitLineData
cc1ae02e 1#!/bin/sh
0ec2b704
FF
2set -e -u
3
4SCRIPTNAME=termux-clipboard-get
5show_usage () {
6 echo "Usage: $SCRIPTNAME"
7 echo "Get the system clipboard text."
8 exit 0
9}
10
11while getopts :h option
12do
13 case "$option" in
14 h) show_usage;;
15 ?) echo "$SCRIPTNAME: illegal option -$OPTARG"; exit 1;
16 esac
17done
18shift $(($OPTIND-1))
19
20if [ $# != 0 ]; then echo "$SCRIPTNAME: too many arguments"; exit 1; fi
59f0d218 21
cc1ae02e 22@TERMUX_API@ Clipboard