diff --git a/pages/linux/fakeroot.md b/pages/linux/fakeroot.md index 579a4c0f7c..5b7c5f8764 100644 --- a/pages/linux/fakeroot.md +++ b/pages/linux/fakeroot.md @@ -11,7 +11,7 @@ `fakeroot -- {{command}} {{command_arguments}}` -- Run a command as fakeroot and save the environment to a file on exit: +- Run a command as fakeroot and [s]ave the environment to a file on exit: `fakeroot -s {{path/to/file}} -- {{command}} {{command_arguments}}` diff --git a/pages/linux/flameshot.md b/pages/linux/flameshot.md index f41399a381..94818c4991 100644 --- a/pages/linux/flameshot.md +++ b/pages/linux/flameshot.md @@ -2,7 +2,7 @@ > Screenshot utility with a GUI. > Supports basic image editing, such as text, shapes, colors, and imgur. -> More information: . +> More information: . - Create a fullscreen screenshot: diff --git a/pages/linux/fprintd-verify.md b/pages/linux/fprintd-verify.md index bc37d58750..9479f55cfd 100644 --- a/pages/linux/fprintd-verify.md +++ b/pages/linux/fprintd-verify.md @@ -25,4 +25,4 @@ - Display help: -`fprintd-verify --help` +`fprintd-verify {{[-h|--help]}}` diff --git a/pages/linux/fsck.md b/pages/linux/fsck.md index c119e0dcb8..e6ced9cdc9 100644 --- a/pages/linux/fsck.md +++ b/pages/linux/fsck.md @@ -11,6 +11,6 @@ `sudo fsck -r {{/dev/sdXN}}` -- Check filesystem `/dev/sdXN`, reporting any damaged blocks and automatically repairing them: +- Check filesystem `/dev/sdXN`, reporting any damaged blocks and [a]utomatically repairing them: `sudo fsck -a {{/dev/sdXN}}` diff --git a/pages/linux/fuser.md b/pages/linux/fuser.md index 2d251a5a56..5c31be6a73 100644 --- a/pages/linux/fuser.md +++ b/pages/linux/fuser.md @@ -9,20 +9,20 @@ - Show more fields (`USER`, `PID`, `ACCESS` and `COMMAND`): -`fuser --verbose {{path/to/file_or_directory}}` +`fuser {{[-v|--verbose]}} {{path/to/file_or_directory}}` - Identify processes using a TCP socket: -`fuser --namespace tcp {{port}}` +`fuser {{[-n|--namespace]}} tcp {{port}}` - Kill all processes accessing a file or directory (sends the `SIGKILL` signal): -`fuser --kill {{path/to/file_or_directory}}` +`fuser {{[-k|--kill]}} {{path/to/file_or_directory}}` - Find which processes are accessing the filesystem containing a specific file or directory: -`fuser --mount {{path/to/file_or_directory}}` +`fuser {{[-m|--mount]}} {{path/to/file_or_directory}}` - Kill all processes with a TCP connection on a specific port: -`fuser --kill {{port}}/tcp` +`fuser {{[-k|--kill]}} {{port}}/tcp`