Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
miniperl 和 perl 之间的唯一区别是 miniperl 不能将基于 XS 的 perl 模块加载为共享对象。所以它不能加载 WIN32 或 CWD 模块。
是否可以在 miniperl 中获取当前工作目录?
是的,可以使用以下方法:
chomp( my $cwd = `cd` );