하나의 파일만 있는 디렉토리에서 터미널을 통해 .blend
파일을 실행하고 싶습니다. .blend
정확한 파일 이름을 모르고 파일을 실행하고 싶습니다.
파일 이름을 알고 있다면 다음과 같이 할 것입니다.
blender --background example.blend --render-output //filename --render-frame 1
답변1
해당 파일이 디렉터리에 있는 유일한 파일(또는 유일한 .blend
파일)인 경우 와일드카드(glob, 경로 이름 확장이라고도 함)를 사용하여 명령을 실행하기만 하면 됩니다.
blender --background *.blend --render-output //filename --render-frame 1