Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 453 Bytes

README.md

File metadata and controls

26 lines (18 loc) · 453 Bytes

sandbox

The sandbox provides an ability to run a command with given limits.

Synopsis

sandbox RESULT_FILE WORKING_DIR COMMAND [ARGS]

For more details run:

sandbox

Example

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