2009年3月12日星期四

[PerlChina] Re: 反引号不能调用系统

正解,win和linux是不同的

2009/3/12 xsir317 <xsir317@163.com>
#! perl -w
my @cmd = `date/t`;
print @cmd;
 
 
这样就可以了。。
 
Windows执行date的时候,会等待你输入新的日期。。。
 
   my $now=`date`;
      print "The time is now $now";
 
这个执行的时候是不是什么输出都没有?你再按个回车看看。。。总之就是命令行在等待输入。。。
 
这种时候怎么办。。。我也不知道。。。
--
http://annyraul.blogspot.com

--~--~---------~--~----~------------~-------~--~----~
您收到此信息是由于您订阅了 Google 论坛"PerlChina Mongers 讨论组"论坛。
 要在此论坛发帖,请发电子邮件到 perlchina@googlegroups.com
 要退订此论坛,请发邮件至 perlchina+unsubscribe@googlegroups.com
 更多选项,请通过 http://groups.google.com/group/perlchina?hl=zh-CN 访问该论坛

-~----------~----~----~----~------~----~------~--~---

没有评论: