Translations by megazordfinal

megazordfinal has submitted the following strings to this translation. Contributions are visually coded: currently used translations, unreviewed suggestions, rejected suggestions.

19 of 9 results
8.
<emphasis role="strong">Note that Linux is case sensitive.</emphasis> User, user, and USER are all different to Linux.
2009-04-01
<emphasis role="strong"> Note que Linux é sensível à caixa..</emphasis> Usuário, usuário e USUÁRIO são todos diferentes para o Linux.
15.
The <command>cd</command> command changes directories. When you open a terminal you will be in your home directory. To move around the file system you will use <command>cd</command>.
2009-04-01
O comando <command>cd</command> muda de diretório. Quando você abrir um terminal você estará em seu diretório home. Para caminhar pelo sistema de arquivos você pode usar <command>cd</command>.
23.
<application>Xfce4 Terminal</application> also displays this information in the title bar of its window.
2009-04-01
<application>Xfce4 Terminal</application> também mostra esta informação na barra de título de sua janela.
26.
The <command>ls</command> command outputs a list of the files in the current directory. For example, typing <screen>ls ~</screen> will show you the files that are in your home directory.
2009-04-01
O comando <command>ls</command> exibe na saída uma lista dos arquivos do diretório atual. Por exemplo, digitando <screen>ls ~</screen> será mostrado a você os arquivos que estão em seu diretório home.
27.
Used with the <command>-l</command> options, <command>ls</command> outputs various other information alongside the filename, such as the current permissions on the file, and the file's owner.
2009-04-01
Usado com a opção <command>-l</command>, <command>ls</command> mostra na saída várias outras informações sobre o nome do arquivo, como as permissões correntes do arquivo, e o dono do arquivo.
29.
The <command>cp</command> command makes a copy of a file. For example, type: <screen>cp foo bar</screen> to make an exact copy of <filename>foo</filename> and name it <filename>bar</filename>. <filename>foo</filename> will be unchanged.
2009-04-01
O comando <command>cp</command> faz uma cópia de um arquivo. Por exemplo, digite: <screen>cp foo bar</screen> para fazer uma cópia exata de <filename>foo</filename> e chamá-lo de <filename>bar</filename>. <filename>foo</filename> continuará intacto.
31.
The <command>mv</command> command moves a file to a different location or will rename a file. Examples are as follows: <screen>mv foo bar</screen> will rename the file <filename>foo</filename> to <filename>bar</filename>. <screen>mv foo ~/Desktop</screen> will move the file <filename>foo</filename> to your <filename class="directory">Desktop</filename> directory but will not rename it.
2009-04-01
O comando <command>mv</command> move um arquivo para um local diferente ou renomeia um arquivo. Exemplos como segue: <screen>mv foo bar</screen> irá renomear o arquivo <filename>foo</filename> para <filename>bar</filename>. <screen>mv foo ~/Desktop</screen>moverá o arquivo <filename>foo</filename para o seu diretório <filename class="directory">Desktop</filename> mas não será renomeado.
33.
<command>rm</command> is used to delete files. <screen>rm foo</screen> deletes the file <filename>foo</filename> from the current directory.
2009-04-01
<command>rm</command> é usado para apagar arquivos . <screen>rm foo</screen> apaga o arquivo <filename>foo</filename> de seu diretório atual.
34.
By default, <command>rm</command> will not remove directories. To remove a directory, you must use the <command>-R</command> option. For example, <screen>rm -R foobar</screen> will remove the directory foobar, <emphasis role="strong">and all of its contents!</emphasis>
2009-04-01
Por padrão, <command>rm</command> não removerá diretórios. Para remover um diretório, você deve usar a opção <command>-R</command>. Por exemplo, <screen>rm -R foobar</screen> irá remover o diretório foobar, <emphasis role="strong"> e todo o seu conteúdo!</emphasis>