我需要从 cygwin 调用 perl 脚本,但该脚本应该使用 Windows perl 而不是 cygwin perl。
# From Cygwin:
# This is correctly running under windows perl
cmd /c foo.pl
# foo's heirarchy
foo.pl
|--------> bar_1.pl
|--------> bar_2.pl
|--------> foobar/foobar.pl
如您所见, foo.pl 在内部调用了许多 perl 脚本。我希望所有这些都在 Windows perl 下运行。发生的事情是 foo.pl 在 Windows 下运行,但它的所有子项仍在 cygwin perl 下运行。不幸的是,我没有修改 foo.pl 的奢侈
那么,如何确保所有子 perl 脚本都在 Windows perl 下运行?我知道这是一个