1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-03 07:15:31 +02:00

mount: add --bind example (#3236)

This commit is contained in:
Clint Priest 2019-08-21 11:52:14 -05:00 committed by Marco Bonelli
parent e182c5bc1a
commit 77c60fc861

View file

@ -21,3 +21,7 @@
- Mount a specific filesystem described in /etc/fstab (e.g. "/dev/sda1 /my_drive ext2 defaults 0 2"):
`mount {{/my_drive}}`
- Mount a directory to another directory:
`mount --bind {{path/to/old_dir}} {{path/to/new_dir}}`