mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 00:42:08 +02:00
cmd: add page (#2345)
This commit is contained in:
parent
3eae85401d
commit
e7beabd5d7
1 changed files with 35 additions and 0 deletions
35
pages/windows/cmd.md
Normal file
35
pages/windows/cmd.md
Normal file
|
@ -0,0 +1,35 @@
|
|||
# cmd
|
||||
|
||||
> The Windows command interpreter.
|
||||
|
||||
- Start a new instance of the command interpreter:
|
||||
|
||||
`cmd`
|
||||
|
||||
- Run the specified command and then exit:
|
||||
|
||||
`cmd /c "{{command}}"`
|
||||
|
||||
- Run the specified command and then enter an interactive shell:
|
||||
|
||||
`cmd /k "{{command}}"`
|
||||
|
||||
- Disable the usage of `echo` in command output:
|
||||
|
||||
`cmd /q`
|
||||
|
||||
- Enable or disable command extensions:
|
||||
|
||||
`cmd /e:{{on|off}}`
|
||||
|
||||
- Enable or disable file or directory autocompletion:
|
||||
|
||||
`cmd /f:{{on|off}}`
|
||||
|
||||
- Enable or disable environment variable expansion:
|
||||
|
||||
`cmd /v:{{on|off}}`
|
||||
|
||||
- Force output to use unicode encoding:
|
||||
|
||||
`cmd /u`
|
Loading…
Add table
Reference in a new issue