Update cheatsheets

This commit is contained in:
ivuorinen
2025-10-19 00:22:04 +00:00
parent aa594e72af
commit 9c64f72b0c
25 changed files with 607 additions and 3 deletions

34
tldr/dos/path Normal file
View 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 /?`