Comparaison des versions

Légende

  • Ces lignes ont été ajoutées. Ce mot a été ajouté.
  • Ces lignes ont été supprimées. Ce mot a été supprimé.
  • La mise en forme a été modifiée.

...

See 'chmod' below about how to change the permissions.

Change Directory

      cd : to change to your home directory
      cd directory-name : to change to another directory
      cd - : to change back to the previous directory

Directory Abbreviations

      ~ : home directory (tilde) home directory of the user
      ~username : another user's home directory
      . : current or working directory
      .. : parent of working directory

Make (or Create) Directory

      mkdirdirectory-name : create a directory called directory-name

options:
    -p  parents: no error if existing, make parent directories as needed

...