Forrest logo
back to context overview

cmd

List of commands for cmd:

  • cmd:tldr:031fb cmd: Execute specific [c]ommands.
    $ cmd /c ${echo Hello world}
    try on your machine
    explain this command
  • cmd:tldr:266da cmd: Start an interactive shell session where `echo` is disabled in command output.
    $ cmd /q
    try on your machine
    explain this command
  • cmd:tldr:2feae cmd: Start an interactive shell session with delayed [v]ariable expansion enabled or disabled.
    $ cmd /v:${select}
    try on your machine
    explain this command
  • cmd:tldr:390cb cmd: Start an interactive shell session with used [u]nicode encoding.
    $ cmd /u
    try on your machine
    explain this command
  • cmd:tldr:3b133 cmd: Call a service with specific arguments.
    $ cmd ${service} ${arg1 arg2 ---}
    try on your machine
    explain this command
  • cmd:tldr:6cbd8 cmd: [l]ist all running services.
    $ cmd -l
    try on your machine
    explain this command
  • cmd:tldr:80885 cmd: Start an interactive shell session with command [e]xtensions enabled or disabled.
    $ cmd /e:${select}
    try on your machine
    explain this command
  • cmd:tldr:c0d5a cmd: Call a specific service.
    $ cmd ${service}
    try on your machine
    explain this command
  • cmd:tldr:d7956 cmd: Execute specific commands and then enter an interactive shell.
    $ cmd /k ${echo Hello world}
    try on your machine
    explain this command
  • cmd:tldr:dfff0 cmd: Start an interactive shell session.
    $ cmd
    try on your machine
    explain this command
back to context overview