mirror of
https://github.com/tldr-pages/tldr.git
synced 2026-09-01 15:51:29 +08:00
7d0d435520
* bun-{add,audit,build,create,exec,install}: add italian translation
* fixes
* Update bun-install.md
* Enhance bun install documentation with more options
Added additional installation options for bun.
* damn autocomplete
* Update pages.it/common/bun-install.md
* Whitespacefix
* Update bun-install.md
* Update bun-add.md
* fix2141234
---------
Co-authored-by: Managor <42655600+Managor@users.noreply.github.com>
Co-authored-by: Magrid <magrid0@proton.me>
543 B
543 B
bun exec
Esegui comandi shell o file di script usando il runtime di Bun. Nota: quando esegui dalla shell, ricorda di sfuggire alle virgolette. Maggiori informazioni: https://bun.com/docs/runtime/shell.
- Esegui un comando semplice:
bun exec "echo hello"
- Esegui un comando con flag:
bun exec "ls -la"
- Esegui un comando contenente virgolette:
bun exec "echo \"hello friends\""
- Esegui un comando shell combinato:
bun exec "mkdir test && cd test"
- Esegui un file di script:
bun exec {{percorso/dello/script}}