diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:42:52 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:42:52 -0500 |
commit | 074785cea106179cb3305637055ab0a009ca74f2 (patch) | |
tree | e6ae371cccd642aa2b67f39752a2cdf1fd4eb040 /files/pt-pt/glossário/crlf/index.html | |
parent | da78a9e329e272dedb2400b79a3bdeebff387d47 (diff) | |
download | translated-content-074785cea106179cb3305637055ab0a009ca74f2.tar.gz translated-content-074785cea106179cb3305637055ab0a009ca74f2.tar.bz2 translated-content-074785cea106179cb3305637055ab0a009ca74f2.zip |
initial commit
Diffstat (limited to 'files/pt-pt/glossário/crlf/index.html')
-rw-r--r-- | files/pt-pt/glossário/crlf/index.html | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/files/pt-pt/glossário/crlf/index.html b/files/pt-pt/glossário/crlf/index.html new file mode 100644 index 0000000000..6ee96215ed --- /dev/null +++ b/files/pt-pt/glossário/crlf/index.html @@ -0,0 +1,29 @@ +--- +title: CRLF +slug: Glossário/CRLF +tags: + - CR + - CRLF + - Glossário + - Infraestrutura + - LF + - Nova Linha + - carriage return +translation_of: Glossary/CRLF +--- +<p>CR e LF são <a href="https://pt.wikipedia.org/wiki/Caractere_de_controle">caracteres de controlo</a> ou {{interwiki("wikipedia", "bytecode")}} que podem ser utilizados para marcar uma quebra de linha num ficheiro de texto.</p> + +<ul> + <li>CR = <em><strong>Carriage Return</strong></em> (<code>\r</code>, <code>0x0D</code> em hexadecimal, 13 em decimal) — move o cursor para o início da linha, sem avançar para a linha seguinte.</li> + <li>LF = <strong><em>Line Feed</em> (</strong><code>\n</code>, <code>0x0A</code> em hexadecimal, 10 em decimal<strong>) — </strong>move o cursor para a próxima linha, sem regressar ao início da linha.</li> +</ul> + +<p>O CR imediatamente seguido por um LF (CRLF, <code>\r\n</code>, ou <code>0x0D0A</code>) move o cursor para baixo até à linha seguinte e depois para o início da linha.</p> + +<h2 id="Saiba_mais">Saiba mais</h2> + +<h3 id="Conhecimento_Geral">Conhecimento Geral</h3> + +<ul> + <li>{{interwiki("wikipedia", "Nova_linha", "Nova linha")}} na Wikipedia</li> +</ul> |