This file contains hidden or 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
    
  
  
    
  | //bot秘钥 | |
| var apiKey = ""; | |
| //请求链接 | |
| var apiUrl = "api.telegram.org"; | |
| //会话ID | |
| var chatId = ""; | |
| //发件人名称 | |
| var senderName = global('SMSRN'); | |
| if (senderName.match(/\d*/g)[0].length > 0) { | |
| senderName = ""; | 
  
    
      This file contains hidden or 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 | |
| # Install daemon tools | |
| if [ "$UID" -ne 0 ] | |
| then echo "Please run as root" | |
| exit | |
| fi | |
| if [ ! -e /usr/bin/gcc ] || [ ! -e /usr/bin/make ]; then | |
| echo gcc or make not installed going to install dev tools in 5 seconds press ^C to exit | |
| sleep 6 | |
| yum -y groupinstall 'Development Tools' |