sendEmail发送邮件是出现以下报错: ******************************************************************* Using the default of SSL_verify_mode of SSL_VERIFY_NONE for client is deprecated! Please set SSL_verify_mode to SSL_VERIFY_PEER together with SSL_ca_file|SSL…
Get Word Definition from dict.youda.com via Perl Script 获取基本释义 Get Basic Definition http://dict.youdao.com/fsearch?q=abstain&doctype=json&xmlVersion=3.2&Version=1.2 ** q ** 要查的单词或词组 只能返回xml格式的,xmlVersion不同会有不同 或者使用 linux命令行下翻译工具 但是没有网页版获取的全 所以…
Compress a Folder/Directory via Perl5 tested in Windows, Mac OS X, Ubuntu16.04 #!/usr/bin/perl #压缩指定目录 #nultiple folder use IO::Dir; use Archive::Tar; use v5.16; die "Give me some Folder\n" if ! @ARGV; &tar_bz2(@ARGV); sub tar_bz2 { my @hays…