multiple pages: format technical tokens (#5119)

Co-authored-by: bl-ue <54780737+bl-ue@users.noreply.github.com>
Co-authored-by: Starbeamrainbowlabs <sbrl@starbeamrainbowlabs.com>
This commit is contained in:
Lucas Gabriel Schneider
2021-01-31 14:05:18 -03:00
committed by GitHub
parent dc690e38eb
commit a5fe31bc47
279 changed files with 409 additions and 410 deletions

View File

@@ -11,7 +11,7 @@
`choco install {{path/to/packages.config}}`
- Install a specific "nuspec" or "nupkg" file:
- Install a specific nuspec or nupkg file:
`choco install {{path/to/file}}`

View File

@@ -1,9 +1,9 @@
# more
> Display paginated output from `stdin` or a file.
> Display paginated output from stdin or a file.
> More information: <https://docs.microsoft.com/windows-server/administration/windows-commands/more>.
- Display paginated output from `stdin`:
- Display paginated output from stdin:
`{{echo test}} | more`

View File

@@ -7,7 +7,7 @@
`msg {{username|session_name|session_id}} {{message}}`
- Send a message from `stdin`:
- Send a message from stdin:
`echo "{{message}}" | msg {{username|session_name|session_id}}`

View File

@@ -19,6 +19,6 @@
`rdpsign {{path/to/file.rdp}} /v`
- Test the signing by displaying the output to `stdout` without updating the file:
- Test the signing by displaying the output to stdout without updating the file:
`rdpsign {{path/to/file.rdp}} /l`

View File

@@ -4,7 +4,7 @@
> By default files will only be copied if the source and destination have different time stamps or different file sizes.
> More information: <https://docs.microsoft.com/windows-server/administration/windows-commands/robocopy>.
- Copy all .jpg and .bmp files from one directory to another:
- Copy all `.jpg` and `.bmp` files from one directory to another:
`robocopy {{path/to/source}} {{path/to/destination}} {{*.jpg}} {{*.bmp}}`

View File

@@ -19,11 +19,11 @@
`wsl --list`
- Export a distribution to a .tar file:
- Export a distribution to a `.tar` file:
`wsl --export {{distribution}} {{path/to/distro_fs.tar}}`
- Import a distribution from a .tar file:
- Import a distribution from a `.tar` file:
`wsl --import {{distribution}} {{path/to/install_location}} {{path/to/distro_fs.tar}}`