12 lines
241 B
Bash
Executable File
12 lines
241 B
Bash
Executable File
#!/bin/bash
|
|
set -x
|
|
|
|
clicksend sms send \
|
|
--to '+31655195180' \
|
|
--body "$*" \
|
|
--csuser 'ignace.suy@gmail.com' \
|
|
--cstoken 'BDAED8AF-29CF-F730-145F-0864C7D86813' >/tmp/clicksend.log 2>&1
|
|
|
|
sendAlertMail.sh "SMS sent to your phone: $*"
|
|
|