Manjaro Difference between revisions of "Translations:CheatSheet/14/en"

Difference between revisions of "Translations:CheatSheet/14/en"

From Manjaro
(Importing a new version from external source)
 
(No difference)

Latest revision as of 12:42, 15 December 2022

Information about message (contribute)
This message has no documentation. If you know where or how this message is used, you can help other translators by adding documentation to this message.
Message definition (CheatSheet)
Change the working directory {{UserCmd|command=cd [dir]}}
Change to parent directory {{UserCmd|command=cd ..}}
List directory contents {{UserCmd|command=ls -l}}
List also hidden files {{UserCmd|command=ls -la}}
Copy file {{UserCmd|command=cp [file] [target]}}
Copy directory '''recursively''' {{UserCmd|command=cp -r [directory] [target]}}
Move or rename file/directory {{UserCmd|command=mv [source] [target]}}
Remove directory '''recursively''' {{UserCmd|command=rm -r [dir]}}
Create symbolic link {{UserCmd|command=ln -s [target] [link]}}
Mount filesystem {{UserCmd|command=mount -t [type] [/dev/sdx9] [mountpoint]}}
Mount ISO image {{UserCmd|command=mount -o loop [iso] [mountpoint]}}
Home directory of user {{UserCmd|command=cd /home/$USER}} {{UserCmd|command=cd ~}}
Directory with global configurations {{UserCmd|command=cd /etc}}

Change the working directory

user $ cd [dir] COPY TO CLIPBOARD


Change to parent directory

user $ cd .. COPY TO CLIPBOARD


List directory contents

user $ ls -l COPY TO CLIPBOARD


List also hidden files

user $ ls -la COPY TO CLIPBOARD


Copy file

user $ cp [file] [target] COPY TO CLIPBOARD


Copy directory recursively

user $ cp -r [directory] [target] COPY TO CLIPBOARD


Move or rename file/directory

user $ mv [source] [target] COPY TO CLIPBOARD


Remove directory recursively

user $ rm -r [dir] COPY TO CLIPBOARD


Create symbolic link

user $ ln -s [target] [link] COPY TO CLIPBOARD


Mount filesystem

user $ mount -t [type] [/dev/sdx9] [mountpoint] COPY TO CLIPBOARD


Mount ISO image

user $ mount -o loop [iso] [mountpoint] COPY TO CLIPBOARD


Home directory of user

user $ cd /home/$USER COPY TO CLIPBOARD


user $ cd ~ COPY TO CLIPBOARD


Directory with global configurations

user $ cd /etc COPY TO CLIPBOARD


Cookies help us deliver our services. By using our services, you agree to our use of cookies.