10 lines
94 B
Plaintext
10 lines
94 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
USER=$1
|
||
|
PASS=$2
|
||
|
body=$3
|
||
|
|
||
|
cat <<EOF | freesms -u ${USER} -p ${PASS} -
|
||
|
${body}
|
||
|
EOF
|