aboutsummaryrefslogtreecommitdiffstats
path: root/execute/echo.sh
blob: 8b2ba22089a5130fc9a860105fcb932bb2c670ed (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
29
30
#!/bin/sh
#
# (C) 2014-2024 by Christian Hesse <mail@eworm.de>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.

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: