我需要在ExtendScript工具包上使用Javascript使用终端命令。例如,在终端窗口上使用pdffonts
命令。
pdffonts ~/Desktop/fontlist.pdf
答案 0 :(得分:2)
如果您使用After Effects,您只需使用:
system.callSystem('Your command');
或者将您的命令写入bat文件,然后使用:
new File('path/to/bat/file.bat').execute();//for windows
new File('path/to/bat/file.sh').execute();//for mac