Forrest logo
back to context overview

xonsh

List of commands for xonsh:

  • xonsh:tldr:27408 xonsh: Define environment variables for the shell process.
    $ xonsh -D${name1}=${value1} -D${name2}=${value2}
    try on your machine
    explain this command
  • xonsh:tldr:45051 xonsh: Execute a single command and then exit.
    $ xonsh -c "${command}"
    try on your machine
    explain this command
  • xonsh:tldr:8e23f xonsh: Run commands from a script file and then exit.
    $ xonsh ${path-to-script_file-xonsh}
    try on your machine
    explain this command
  • xonsh:tldr:e2748 xonsh: Skip loading the `.xonshrc` configuration file.
    $ xonsh --no-rc
    try on your machine
    explain this command
  • xonsh:tldr:ef1b1 xonsh: Start an interactive shell session.
    $ xonsh
    try on your machine
    explain this command
  • xonsh:tldr:f2e5d xonsh: Load the specified `.xonsh` or `.json` configuration files.
    $ xonsh --rc ${filename1-xonsh} ${filename2-json}
    try on your machine
    explain this command
back to context overview