文件名称:Perl语言实例-Perl脚本培训
文件大小:525KB
文件格式:PPT
更新时间:2024-05-15 02:48:02
perl 脚本
Perl语言实例 一、Perl脚本演示 1.打印脚本test.pl演示 脚本内容: #!/usr/bin/perl #2013/4/16-14:40:41 ########### test.pl ######## my $var="hello world!\n"; print $var; 运行结果: root@Storage:/home# ./test.pl hello world! 2.其他脚本简单讲解和演示