|
21.
|
|
|
To navigate through multiple levels of directories at once, specify the full directory path that you want to go to. For example, type: <screen>cd /var/www</screen> to go directly to the <filename class="directory">/www</filename> subdirectory of <filename class="directory">/var/</filename>. As another example, type: <screen>cd ~/Desktop</screen> to move you to the <filename class="directory">Desktop</filename> subdirectory inside your home directory.
|
|
|
|
Para navegar a través múltiples niveis de directorios dunha vez, especifique o camiño completo ao directorio ao que quere ir. Por exemplo, escriba <screen>cd /var/www</screen> para ir directamente ao subdirectorio <filename class="directory">/www</filename> de <filename class="directory">/var/</filename>. Como outro exemplo máis, escriba <screen>cd ~/Desktop</screen> para moverse ao subdirectorio <filename class="directory">Escritorio</filename> do seu directorio persoal.
|
|
Translated and reviewed by
Antón Méixome
|
|
|
|
Located in
basic-commands/C/basic-commands.xml:140(para)
|
|
22.
|
|
|
pwd
|
|
|
|
pwd
|
|
Translated and reviewed by
Xosé
|
|
|
|
Located in
basic-commands/C/basic-commands.xml:157(title)
|
|
23.
|
|
|
<application>Xfce4 Terminal</application> also displays this information in the title bar of its window.
|
|
|
|
<application>Xfce4 Terminal</application> tamén mostra esta información na barra de título desta xanela.
|
|
Translated and reviewed by
Antón Méixome
|
|
|
|
Located in
basic-commands/C/basic-commands.xml:167(para)
|
|
24.
|
|
|
The <command>pwd</command> command outputs which directory you are currently located in (<acronym>pwd</acronym> stands for <quote>print working directory</quote>). For example, typing <screen>pwd</screen> in the <filename class="directory">Desktop</filename> directory, will show <computeroutput>/home/username/Desktop</computeroutput>. <placeholder-1/>
|
|
|
|
A orde <command>pwd</command> mostra o directorio no que se atopa situado actualmente (<acronym>pwd</acronym> significa <quote>print working directory</quote>, "imprime o directorio de traballo"). Por exemplo, ao escribir <screen>pwd</screen> no directorio <filename class="directory">Escritorio</filename> mostrarase <computeroutput>/home/nomedeusuario/Desktop</computeroutput>. <placeholder-1/>
|
|
Translated and reviewed by
Antón Méixome
|
|
|
|
Located in
basic-commands/C/basic-commands.xml:158(para)
|
|
25.
|
|
|
ls
|
|
|
|
ls
|
|
Translated and reviewed by
Xosé
|
|
|
|
Located in
basic-commands/C/basic-commands.xml:176(title)
|
|
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.
|
|
|
|
A orde <command>ls</command> mostra unha lista dos ficheiros do directorio actual. Por exemplo, ao escribir <screen>ls ~</screen> mostraránselle os ficheiros que están no seu directorio persoal.
|
|
Translated and reviewed by
Antón Méixome
|
|
|
|
Located in
basic-commands/C/basic-commands.xml:177(para)
|
|
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.
|
|
|
|
Usado coas opcións <command>-l</command>, <command>ls</command> mostra información diversa a carón do nome de ficheiro, tales como os permisos actuais do ficheiro e o propietario do ficheiro.
|
|
Translated and reviewed by
Antón Méixome
|
|
|
|
Located in
basic-commands/C/basic-commands.xml:183(para)
|
|
28.
|
|
|
cp
|
|
|
|
cp
|
|
Translated and reviewed by
Xosé
|
|
|
|
Located in
basic-commands/C/basic-commands.xml:191(title)
|
|
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.
|
|
|
|
A orde <command>cp</command> realiza unha copia dun ficheiro. Por exemplo, escriba <screen>cp foo bar</screen> para crear unha copia exacta de <filename>foo</filename> que se chame <filename>bar</filename>. <filename>foo</filename> permanecerá inalterado.
|
|
Translated and reviewed by
Antón Méixome
|
|
|
|
Located in
basic-commands/C/basic-commands.xml:192(para)
|
|
30.
|
|
|
mv
|
|
|
|
mv
|
|
Translated and reviewed by
Xosé
|
|
|
|
Located in
basic-commands/C/basic-commands.xml:202(title)
|