執行小命令我使用這個命令到遠程服務器如何獲得錯誤或消息在Perl
my $output=`psexec \\\\host cmd /c "dir /s d:\\folder\file`
上搜索和獲取文件的詳細信息後,如果文件存在,將顯示所有文件和其路徑和它們存儲在$output
如果路徑沒有找到,或者如果服務器不存在,返回以下的CMD但不$output
Starting cmd on host...ice on host... The system cannot find the path specified. cmd exited on host with error code 1.
我怎樣才能從消息cmd或報告錯誤,我試過$!
不返回任何東西
https://perldoc.perl.org//perlop.html#qx%2f_STRING_%2f –