The sandbox
provides an ability to run a command with given limits.
sandbox RESULT_FILE WORKING_DIR COMMAND [ARGS]
For more details run:
sandbox
The next example runs a process with CPU and memory limits, and prints the execution statistics afterwards.
export SANDBOX_CPU_LIMIT=1000
export SANDBOX_MEMORY_LIMIT=1000000
sandbox ./my-calc.stat ./ ./my-calc 1 + 2
cat ./my-calc.stat