通过终端在搅拌机中打开文件名未知的单个文件

通过终端在搅拌机中打开文件名未知的单个文件

我想通过终端在只有一个文件所在的.blend目录中执行一个文件。.blend我想在不知道确切文件名的情况下启动该文件。

如果我知道文件名,我会这样做:

blender --background example.blend --render-output //filename --render-frame 1

答案1

如果它是目录中唯一的文件(甚至是唯一的.blend文件),您所要做的就是使用通配符(又名 glob,又名路径名扩展)运行命令:

blender --background *.blend --render-output //filename --render-frame 1

相关内容