Update cheatsheets

This commit is contained in:
ivuorinen
2025-10-07 00:19:24 +00:00
parent 3e6fa5fca1
commit 4102fec4f8
26 changed files with 610 additions and 8 deletions

29
tldr/dosbox Normal file
View File

@@ -0,0 +1,29 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# dosbox
> MS-DOS emulator to run legacy DOS applications and games.
> More information: <https://www.dosbox.com/wiki/Usage>.
- Start DOSBox with default settings:
`dosbox`
- Run a DOS executable located at a specific path:
`dosbox {{path/to/executable.exe}}`
- Mount a folder as C: and run an executable:
`dosbox {{path/to/executable.exe}} -c "MOUNT C {{path/to/folder}}"`
- Start DOSBox in fullscreen mode:
`dosbox -fullscreen`
- Exit DOSBox automatically after running a program:
`dosbox {{path/to/executable.exe}} -exit`