Command-line interface to the Blender 3D computer graphics application. Arguments are executed in the order they are given. More information: https://docs.blender.org/manual/en/latest/advanced/command_line/arguments.html.
/tmp
):blender --background path/to/file.blend --render-anim
//
) to the .blend file:blender --background path/to/file.blend --render-output //render/frame_###.png --render-anim
blender --background path/to/file.blend --render-output /path/to/output_directory --render-frame 10
blender --background path/to/file.blend --render-output //output_directory --render-frame JPEG --render-frame -2
blender --background path/to/file.blend --scene scene_name --frame-start 10 --frame-end 500 --render-anim
blender --background path/to/file.blend --python-expr 'import bpy; bpy.data.scenes[0].render.resolution_percentage = 25' --render-anim
import bpy
after starting):blender --background --python-console