Files
tldr/pages.it/common/bun-exec.md
Adriano Inghingolo 7d0d435520 bun-{add,audit,build,create,exec}: add italian translation (#22712)
* 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>
2026-06-14 20:33:11 +02:00

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}}