bio-dynamie/sms/AIDE.sh

18 lines
558 B
Bash
Raw Normal View History

2021-06-08 16:16:09 +02:00
#!/bin/bash
################################################################################
# Author: Fred (support@qo-op.com)
# Version: 0.1
# License: AGPL-3.0 (https://choosealicense.com/licenses/agpl-3.0/)
################################################################################
echo "EXECUTE AIDE.sh ($1=phone)"
phone="$1"
2021-06-08 16:16:09 +02:00
MESS="[Aide]
Envoyer 'O' active votre embarquement Neonaute.
Envoyer 'J' pour recevoir les missions du jour.
Envoyer 'X' pour vous désinscrire.
2021-06-08 16:16:09 +02:00
"
# Send response SMS
gammu-smsd-inject TEXT "$phone" -text "$MESS"
2021-06-08 16:16:09 +02:00
exit 0