Skip to content
Snippets Groups Projects
Commit 5011c961 authored by Bertrand  NÉRON's avatar Bertrand NÉRON
Browse files

fix rst syntax in file_system

parent a7d509e0
No related branches found
No related tags found
No related merge requests found
Pipeline #87640 passed
...@@ -37,7 +37,7 @@ do you already know a tree structure in biology? ...@@ -37,7 +37,7 @@ do you already know a tree structure in biology?
:width: 500px :width: 500px
file system tree structure file system tree structure
========================= ==========================
.. figure:: ../_static/unix/images/UnixDirectoryTree.png .. figure:: ../_static/unix/images/UnixDirectoryTree.png
:class: align-center :class: align-center
...@@ -272,20 +272,20 @@ mv warning ...@@ -272,20 +272,20 @@ mv warning
The **mv** command has not the same effect depending if src and dest are directories or files. The **mv** command has not the same effect depending if src and dest are directories or files.
+--------------+-----------+------------------------------------------------------------+ +--------------+-----------+------------------------------------------------------------=+
| src type | dest type | action | | src type | dest type | action |
+==============+===========+============================================================+ +==============+===========+=============================================================+
| one file | file | the src file is renamed into dest file | | one file | file | the src file is renamed into dest file |
| | | beware if dest file already exists it's lost | | | | beware if dest file already exists it's lost |
+--------------+-----------+------------------------------------------------------------+ +--------------+-----------+-------------------------------------------------------------+
| several file | file | all src files are lost only the last one is renamed as dest | | several file | file | all src files are lost only the last one is renamed as dest |
+--------------+-----------+------------------------------------------------------------+ +--------------+-----------+-------------------------------------------------------------+
| file | dir | all src files are moved in dest directory | | file | dir | all src files are moved in dest directory |
| | | dest directory must exists. If not it is consider as a file | | | | dest directory must exists. If not it is consider as a file |
+--------------+-----------+------------------------------------------------------------+ +--------------+-----------+-------------------------------------------------------------+
| dir | dir | all src directories are moved in dest directory | | dir | dir | all src directories are moved in dest directory |
| | | the dest directory must already exists | | | | the dest directory must already exists |
+--------------+-----------+------------------------------------------------------------+ +--------------+-----------+-------------------------------------------------------------+
Exercise: Exercise:
--------- ---------
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment