1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 00:42:08 +02:00

coffee: add pt_BR translation (#11105)

* coffee: add pt_BR translation

* coffee: fix pt_BR translation

* update coffee.md

---------

Co-authored-by: Isaac Vicente <isaacvicentsocial@gmail.com>
This commit is contained in:
Felipe Furquim 2023-10-20 19:29:35 -03:00 committed by GitHub
parent a6e6f6a0e9
commit 68d82800ac
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,24 @@
# coffee
> Executa scripts CoffeeScript ou os compila em JavaScript.
> Mais informações: <https://coffeescript.org#cli>.
- Executa um script:
`coffee {{caminho/para/arquivo.coffee}}`
- Compila para JavaScript e salva em um arquivo com o mesmo nome:
`coffee --compile {{caminho/para/arquivo.coffee}}`
- Compila para JavaScript e salva em um arquivo de saída indicado:
`coffee --compile {{caminho/para/arquivo.coffee}} --output {{caminho/para/arquivo.js}}`
- Inicia um REPL (shell interativo):
`coffee --interactive`
- Observa script para alterações e o executa novamente:
`coffee --watch {{caminho/para/arquivo.coffee}}`