This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
if [ $# -eq 0 ]; then | |
echo "Usage: $0 -n [number] -m [message] -u [username] -p [password]"; | |
echo ""; | |
echo "[number] = SMS number to send message to"; | |
echo "[message] = Text of message you want to send"; | |
echo "[username] = Username assocated with aql account"; | |
echo "[password] = Password assocated with aql account"; | |
echo " Both the username and password options are optional and"; |