Perl初试

通过接口发送短信的socket小样:

#!/usr/bin/perl -w
#       auth:[email protected]
#       what:send message to phone
#       usage: sms.pl [phonenumber] [text]

use strict;
use Socket;

if(scalar @ARGV != 2){
    die "Usage: sms.pl [phonenumber] [text]\n";
}

my $phone = $ARGV[0];
my $text = $ARGV[1];

my $sms_host = "xxx.xxx.xxx.xxx";
my $sms_port = 8089;

socket(SOCK, AF_INET, SOCK_STREAM, getprotobyname("tcp")) 
    or die "Error: cannot create socket\n";
connect(SOCK, sockaddr_in($sms_port, inet_aton($sms_host))) 
    or die "Error: cannot connect sms server\n";
send(SOCK, "$phone||$text", 0) 
    or die "Error: an unexpected exception occurred when sending message\n";

close(SOCK);

 

转载于:https://www.cnblogs.com/lichmama/p/4368839.html

你可能感兴趣的:(网络)