document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. #!/bin/bash
  2.  
  3. if [ -n "$1" ]; then
  4.     TO=55$1
  5. else
  6.     read -p "To ex: 8199999999: " TO
  7.     TO="55${TO}"
  8. fi
  9.  
  10. if [ -n "$2" ]; then
  11.     MSG=$2
  12. else
  13.     read -p "Message: " MSG
  14. fi
  15.  
  16. echo -e "From: [Seu nome ou telefone]\\nTo: ${TO}\\n\\n${MSG}" > /var/spool/sms/outgoing/sms.$$
');