mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00

* pages.pt*: fix verb tenses * pages.pt*: fix all pt_PT verb tenses in the start and more pt_BR verb tenses * pages.pt_BR: fix more verb tenses * pages.pt_BR: fix more verb tenses * pages.pt_BR: fix more verb tenses * pages.pt*: fix more verb tenses * review PR --------- Co-authored-by: Isaac Vicente <isaacvicentsocial@gmail.com> Co-authored-by: Isaac Vicente <contatoisaacvicente@gmail.com>
20 lines
437 B
Markdown
20 lines
437 B
Markdown
# clear
|
|
|
|
> Limpa a tela do terminal.
|
|
> Mais informações: <https://manned.org/clear>.
|
|
|
|
- Limpa a tela (equivalente a apertar Control-L no terminal Bash):
|
|
|
|
`clear`
|
|
|
|
- Limpa a tela mantendo o buffer de rolagem do terminal:
|
|
|
|
`clear -x`
|
|
|
|
- Especifica o tipo de terminal a ser limpado (por padrão é o valor da variável de ambiente `TERM`):
|
|
|
|
`clear -T {{tipo_do_terminal}}`
|
|
|
|
- Mostra a versão do `ncurses` usado pelo `clear`:
|
|
|
|
`clear -V`
|