#!/bin/bash ################################################################################ # Author: Fred (support@qo-op.com) # Version: 0.1 # License: AGPL-3.0 (https://choosealicense.com/licenses/agpl-3.0/) ################################################################################ source ./shell/init.sh source ./shell/functions.sh log "X sms_AIDE.sh ($1=phone)" sms_INIT_ACCOUNT "$1" "NOSMS" MESS="N Pseudo : Création Portefeuille rattaché à Pseudo S : Synchro Solde P 06nnnnnnnn 300 : Payer 300 à 06nnnnnnnn U G1/DU/LOVE : Unité " # Send response SMS sms_SEND "$1" "$MESS" MESS="EMAIL moi@email : Email pour commande G1Billets BILL n : Recevoir 6 G1Billets remplis de n LOVE" sms_SEND "$1" "$MESS" MESS="VIR 50 Pseudo : Virer 50 à Pseudo (membre ou Portefeuille SMS) REC 50 Dest S 4 : Virer 50 à Dest, 4 Semaines (J/S/M/A) Contact : $ADMINPSEUDO ($ADMINPHONE) - https://g1sms.fr" sms_SEND "$1" "$MESS" log "END sms_AIDE.sh" log "~~~~~~~~~~~~~~~~~~~~~~~~~~~~" exit