Update cheatsheets

This commit is contained in:
ivuorinen
2025-11-19 00:20:57 +00:00
parent 83af6b3c72
commit c80d49f5d0
26 changed files with 464 additions and 13 deletions

30
tldr/bun-exec Normal file
View File

@@ -0,0 +1,30 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# bun exec
> Execute shell commands or script files using Bun's runtime.
> Note: When running from a shell, remember to escape quotes.
> More information: <https://bun.sh/docs/runtime/shell>.
- Run a simple command:
`bun exec "echo hello"`
- Run a command with flags:
`bun exec "ls -la"`
- Run a command containing quotes:
`bun exec "echo \"hello friends\""`
- Run a combined shell command:
`bun exec "mkdir test && cd test"`
- Run a script file:
`bun exec {{path/to/script}}`