docs/cli/exec.md
mise execmise exec [FLAGS] [TOOL@VERSION]… [-- COMMAND]…xsrc/cli/exec.rsExecute a command with tool(s) set
use this to avoid modifying the shell session or running ad-hoc commands with mise tools set.
Tools will be loaded from mise.toml, though they can be overridden with <RUNTIME> args
Note that only the plugin specified will be overridden, so if a mise.toml file
includes "node 20" but you run mise exec [email protected]; it will still load node@20.
The "--" separates runtimes from the commands to pass along to the subprocess.
[TOOL@VERSION]…Tool(s) to start e.g.: node@20 [email protected]
[-- COMMAND]…Command string to execute (same as --command)
-c --command <C>Command string to execute
-j --jobs <JOBS>Number of jobs to run in parallel [default: 4]
--allow-env… <VAR>[experimental] Allow specific env var through (implies --deny-env for everything else) Supports wildcards, e.g. --allow-env='MYAPP_*'
--allow-net… <HOST>[experimental] Allow network to specific host (implies --deny-net for everything else) macOS only in v1; on Linux falls back to allowing all network
--allow-read… <PATH>[experimental] Allow reads from specific path (implies --deny-read for everything else)
--allow-write… <PATH>[experimental] Allow writes to specific path (implies --deny-write for everything else)
--deny-all[experimental] Block reads, writes, network, and env vars
--deny-env[experimental] Block env var inheritance (only PATH, HOME, USER, SHELL, TERM, LANG pass through)
--deny-net[experimental] Block all network access
--deny-read[experimental] Block filesystem reads (system libs and tool dirs still accessible)
--deny-write[experimental] Block all filesystem writes
--fresh-envBypass the environment cache and recompute the environment
--no-depsSkip automatic dependency preparation
--rawDirectly pipe stdin/stdout/stderr from plugin to user Sets --jobs=1
Examples:
$ mise exec node@20 -- node ./app.js # launch app.js using node-20.x
$ mise x node@20 -- node ./app.js # shorter alias
# Specify command as a string:
$ mise exec node@20 [email protected] --command "node -v && python -V"
# Run a command in a different directory:
$ mise x -C /path/to/project node@20 -- node ./app.js