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.
我想在 cygwin 终端中启动 perl.pl,以便 perl.pl 在新的 cygwin 终端中启动。
做这个的最好方式是什么?
到目前为止,我尝试使用 system(perl.pl) 和 exec(perl.pl),但它在 windows 命令行中运行 perl 脚本,而不是 cygwin。
通过查看快捷方式的属性可以看到,打开终端的命令是
mintty.exe -i /Cygwin-Terminal.ico -s 105,60 -
所以你会跑
system('mintty perl.pl');
使用命令 xterm:
xterm -hold -e perl.pl