1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-23 08:55:34 +02:00

mount: simplify example (#16310)

Update mount.md
This commit is contained in:
Managor 2025-05-01 12:00:02 +03:00 committed by GitHub
parent 57de0ae647
commit 4e516a4fb0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -9,7 +9,7 @@
- Mount a device to a directory:
`mount {{[-t|--types]}} {{filesystem_type}} {{path/to/device_file}} {{path/to/target_directory}}`
`mount {{path/to/device_file}} {{path/to/target_directory}}`
- Create a specific directory if it does not exist and mount a device to it:
@ -23,7 +23,7 @@
`mount {{[-t|--types]}} {{iso9660}} {{[-o|--options]}} ro {{/dev/cdrom}} {{/cdrom}}`
- Mount all the filesystem defined in `/etc/fstab`:
- Mount all the filesystems defined in `/etc/fstab`:
`mount {{[-a|--all]}}`