blob: 15ca215dc5e3e1e25b71253f128a093cf06febf1 (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#!/bin/sh
#
# (C) 2015 by Christian Hesse <mail@eworm.de>
#
# This software may be used and distributed according to the terms
# of the GNU General Public License, incorporated herein by reference.
while getopts "i:p:m:" opt; do
case ${opt} in
i)
IDENTIFIER="${OPTARG}"
;;
p)
PRIORITY="${OPTARG}"
;;
m)
MESSAGE="${OPTARG}"
;;
esac
done
echo "IDENTIFIER: ${IDENTIFIER}"
echo "PRIORITY: ${PRIORITY}"
echo "MESSAGE: ${MESSAGE}"
exit 0
# vim: set syntax=sh:
|