From 4e516a4fb0cd623a13beb44047bcbce6f2a8c349 Mon Sep 17 00:00:00 2001 From: Managor <42655600+Managor@users.noreply.github.com> Date: Thu, 1 May 2025 12:00:02 +0300 Subject: [PATCH] mount: simplify example (#16310) Update mount.md --- pages/linux/mount.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/linux/mount.md b/pages/linux/mount.md index 795281da1e..e010a12e09 100644 --- a/pages/linux/mount.md +++ b/pages/linux/mount.md @@ -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]}}`