YUANya

导航

 

2019年6月16日

摘要: 输入文件句柄#!/usr/bin/perluse strict;use warnings;# cat 1.txt# ssssssssssss# ssssssssss# dddd... 阅读全文
posted @ 2019-06-16 17:53 YUANya 阅读(108) 评论(0) 推荐(0) 编辑
 
摘要: 输出到标准输出ssssssssssssssssssssssdddddddddddd2222222222sssssssssssssssss#!/usr/bin/perluse s... 阅读全文
posted @ 2019-06-16 15:50 YUANya 阅读(134) 评论(0) 推荐(0) 编辑
 

2019年6月15日

摘要: 调用参数 问题一:文件无法传入 阅读全文
posted @ 2019-06-15 20:56 YUANya 阅读(226) 评论(0) 推荐(0) 编辑
 
摘要: 读取标准输入#!/usr/bin/perluse strict;use warnings;my $line=;my $err = defined($line);print "$... 阅读全文
posted @ 2019-06-15 19:21 YUANya 阅读(112) 评论(0) 推荐(0) 编辑
 
摘要: #!/usr/bin/perluse strict;use warnings;use 5.010;&print_hello;sub print_hello{ my $he... 阅读全文
posted @ 2019-06-15 18:21 YUANya 阅读(149) 评论(0) 推荐(0) 编辑
 

2019年6月12日

摘要: 比对两个文件并纠错#!/usr/bin/perluse strict;use warnings;########################################... 阅读全文
posted @ 2019-06-12 14:46 YUANya 阅读(132) 评论(0) 推荐(0) 编辑
 
摘要: 环境上下文#!/usr/bin/envperluse strict;use warnings;$_ = "ABCDEFG";print;print"\n";##ABCDEFG$... 阅读全文
posted @ 2019-06-12 00:53 YUANya 阅读(95) 评论(0) 推荐(0) 编辑
 

2019年6月11日

摘要: 数组到foreach#!/usr/bin/envperluse strict;use warnings;foreach (qw( a b c )) { print "$_";... 阅读全文
posted @ 2019-06-11 01:58 YUANya 阅读(125) 评论(0) 推荐(0) 编辑
 

2019年6月10日

摘要: 列表#!/usr/bin/envperluse strict;use warnings;if( ( 1 , 2 , 3 ) eq ( 1 , 2 , 3 , ) ) {prin... 阅读全文
posted @ 2019-06-10 00:11 YUANya 阅读(93) 评论(0) 推荐(0) 编辑
 

2019年6月9日

摘要: 数组#!/usr/bin/envperluse strict;use warnings;my @arr; $arr[2] ="apple" ;print "$arr[3.14-... 阅读全文
posted @ 2019-06-09 23:51 YUANya 阅读(90) 评论(0) 推荐(0) 编辑