在打开 pdf 文件的同时需要退出当前的 perl 脚本
simultaneously need to exit current perl script while opening the pdf file
我有一个脚本来打开 pdf 文件(不在 Adobe Acrobat 应用程序中)而不是 Sumatra 应用程序(Pdf 查看器)。
system("start Sumatra C:/Users/test/Desktop/19June.pdf");
exit;
问题是一旦我们需要关闭 pdf 文件,那么只有脚本退出了。但要求是该工具将退出并且不考虑打开的pdf文件。
使用 exec
而不是 system
。 exec
用给定的进程替换当前进程,而 system
将启动一个新进程并等待它退出。
我有一个脚本来打开 pdf 文件(不在 Adobe Acrobat 应用程序中)而不是 Sumatra 应用程序(Pdf 查看器)。
system("start Sumatra C:/Users/test/Desktop/19June.pdf");
exit;
问题是一旦我们需要关闭 pdf 文件,那么只有脚本退出了。但要求是该工具将退出并且不考虑打开的pdf文件。
使用 exec
而不是 system
。 exec
用给定的进程替换当前进程,而 system
将启动一个新进程并等待它退出。