mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-03-12 14:59:01 +00:00
Move pages under tldr, lint run.sh, update docs
This commit is contained in:
37
tldr/windows/more
Normal file
37
tldr/windows/more
Normal file
@@ -0,0 +1,37 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, windows]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# more
|
||||
|
||||
> Display paginated output from `stdin` or a file.
|
||||
> More information: <https://learn.microsoft.com/windows-server/administration/windows-commands/more>.
|
||||
|
||||
- Display paginated output from `stdin`:
|
||||
|
||||
`{{echo test}} | more`
|
||||
|
||||
- Display paginated output from one or more files:
|
||||
|
||||
`more {{path oile}}`
|
||||
|
||||
- Convert tabs to the specified number of spaces:
|
||||
|
||||
`more {{path oile}} /t{{spaces}}`
|
||||
|
||||
- Clear the screen before displaying the page:
|
||||
|
||||
`more {{path oile}} /c`
|
||||
|
||||
- Display the output starting at line 5:
|
||||
|
||||
`more {{path oile}} +{{5}}`
|
||||
|
||||
- Enable extended interactive mode (see help for usage):
|
||||
|
||||
`more {{path oile}} /e`
|
||||
|
||||
- Display help:
|
||||
|
||||
`more /?`
|
||||
Reference in New Issue
Block a user