7 lines
133 B
Bash
7 lines
133 B
Bash
#!/bin/bash -e
|
|
|
|
# runs blender with limited memory (will crash if blender allocates too much)
|
|
|
|
ulimit -Sv 5000000
|
|
#shift
|
|
./blender $@ |