This commit is contained in:
Micke Nordin 2023-11-22 12:12:57 +01:00
parent f581835f7c
commit 7dc9667bec

View file

@ -1,6 +1,6 @@
#!/bin/bash
VALID_ARGS=$(getopt -o s --long subject -- "$@")
VALID_ARGS=$(getopt -o s: --long subject: -- "$@")
# shellcheck disable=SC2181
if [[ ${?} -ne 0 ]]; then
exit 1;
@ -28,9 +28,8 @@ done
if [[ -z ${subject} ]]; then
usage
fi
fi
id=$(/root/tasks/announce.sh --get | xmlstarlet sel -t -i '//subject="'${subject}'"' -m "/ocs/data/element/id" -v .)
id=$(/root/tasks/announce.sh --get | xmlstarlet sel -t -i '//subject="'"${subject}"'"' -m "/ocs/data/element/id" -v .)
if [[ -n ${id} ]]; then
/root/tasks/announce.sh --delete --id "${id}"
fi