摘要: 1. `command`; 使用反引号调用外部命令能够捕获其标准输出,并按行返回且每行结束处附带一个回车。反引号中的变量在编译时会被内插为其值。 2. open LIST "ls -l|"; open MORE "|more"; @list=<LIST>; print MORE @list; clo 阅读全文
posted @ 2017-07-15 17:43 马踏飞燕Beautiful 阅读(4671) 评论(0) 推荐(0) 编辑
摘要: 1、pod2text # 功能输出处理对象(脚本)中的的=head1 ...=head1 ......=cut框架中的信息 2、date # 输出时间 eg: Sat Jul 15 16:32:54 CST 2017 3、command # ********* 阅读全文
posted @ 2017-07-15 16:37 马踏飞燕Beautiful 阅读(151) 评论(0) 推荐(0) 编辑
摘要: #开头处常用模块 #!usr/bin/perl use warnings; use strict; use Getopt::Long; use File::Basename; use PerIO::gzip; #open IN,"<:gzip","$in" or die " $in:$!"; #打开 阅读全文
posted @ 2017-07-15 15:06 马踏飞燕Beautiful 阅读(1448) 评论(0) 推荐(0) 编辑
摘要: 我们在linux常常用到一个程序需要加入参数,现在了解一下 perl 中的有关控制参数的模块 Getopt::Long ,比直接使用 @ARGV 的数组强大多了.我想大家知道在 Linux 中有的参数有二种形式. 长参数 –help 短参数 -h 也就是-和–的分别.–表示完整参数.-表示简化参数. 阅读全文
posted @ 2017-07-15 14:41 马踏飞燕Beautiful 阅读(357) 评论(0) 推荐(0) 编辑