有人可以帮帮我吗?在Perl中,有什么区别:
exec "command";
和
system("command");
print `command`;
还有其他方法来运行shell命令吗?
perl
perl ×1