mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-03-16 21:00:25 +00:00
Update cheatsheets
This commit is contained in:
13
tldr/dos/cls
Normal file
13
tldr/dos/cls
Normal file
@@ -0,0 +1,13 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, dos]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# CLS
|
||||
|
||||
> Clear the screen and reset colors.
|
||||
> More information: <https://help.fdos.org/en/hhstndrd/batch/cls.htm>.
|
||||
|
||||
- Clear the screen resetting colors to white on black:
|
||||
|
||||
`CLS`
|
||||
34
tldr/dos/path
Normal file
34
tldr/dos/path
Normal file
@@ -0,0 +1,34 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, dos]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# PATH
|
||||
|
||||
> Display or set the search path for executable files.
|
||||
> This command is available in `FreeDOS` only.
|
||||
> More information: <https://help.fdos.org/en/hhstndrd/batch/path.htm>.
|
||||
|
||||
- Display the current search path:
|
||||
|
||||
`PATH`
|
||||
|
||||
- Set the semicolon-separated list of directories to search in:
|
||||
|
||||
`PATH {{path/to/directory1;path/to/directory2;...}}`
|
||||
|
||||
- Append a directory to the search path:
|
||||
|
||||
`PATH %PATH%;{{path/to/directory}}`
|
||||
|
||||
- Add a directory to the beginning of the search path:
|
||||
|
||||
`PATH {{path/to/directory}};%PATH%`
|
||||
|
||||
- Clear the search path:
|
||||
|
||||
`PATH;`
|
||||
|
||||
- Display help:
|
||||
|
||||
`PATH /?`
|
||||
Reference in New Issue
Block a user