LinuxSir.cn,穿越时空的Linuxsir!

 找回密码
 注册
搜索
热搜: shell linux mysql
查看: 2431|回复: 6

使用system函数的一个例子。

[复制链接]
发表于 2003-11-26 21:54:33 | 显示全部楼层 |阅读模式
#!/usr/bin/perl -w
$stant=system("ls");
print "$stant\n";

$well=system "'date'";
print "threewell\n-------------\n";

@hello=("echo","hello,world!");
system(@hello);
发表于 2003-12-20 03:43:38 | 显示全部楼层
`` 也可以用的吧
 楼主| 发表于 2003-12-20 12:54:41 | 显示全部楼层
最初由 x11 发表
`` 也可以用的吧


你说得对,当时还没学到用` ` 捏:p

一个简单的例子:

#!/usr/bin/perl -w
@a=`ls /root` ;
foreach ( @a ) {
print $_ ;
}
发表于 2003-12-21 05:26:38 | 显示全部楼层
再紧凑一点:

  1. #!/usr/bin/perl -w

  2. foreach (`ls /root`){
  3.   print;
  4. }
复制代码
 楼主| 发表于 2003-12-21 13:08:18 | 显示全部楼层
原来这样也行
发表于 2003-12-21 15:03:36 | 显示全部楼层
為什麼不直接 print `ls /root`; ?
 楼主| 发表于 2003-12-21 19:37:42 | 显示全部楼层
最初由 georgek 发表
為什麼不直接 print `ls /root`; ?

这样更简单
您需要登录后才可以回帖 登录 | 注册

本版积分规则

快速回复 返回顶部 返回列表