#!/bin/sh # # (C) 2015 by Christian Hesse # # 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: