1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 05:07:45 +00:00

Base: Fix Markdown links in man pages

This commit is contained in:
Ben Wiederhake 2021-09-11 13:36:43 +02:00 committed by Andreas Kling
parent 73e42917f9
commit 0e3f5d3778
11 changed files with 14 additions and 19 deletions

View file

@ -13,10 +13,3 @@ checksum - helper program for calculating checksums
This program calculates and print specified checksum of files. It cannot be run directly, only This program calculates and print specified checksum of files. It cannot be run directly, only
as `md5sum`, `sha1sum`, `sha256sum` or `sha512sum`. as `md5sum`, `sha1sum`, `sha256sum` or `sha512sum`.
## See also
* [`md5sum`(1)](md5sum.md)
* [`sha1sum`(1)](sha1sum.md)
* [`sha256sum`(1)](sha256sum.md)
* [`sha512sum`(1)](sha512sum.md)

View file

@ -44,6 +44,5 @@ $ chmod g=r script.sh
## See also ## See also
* [`chgrp`(1)](chmod.md) * [`chgrp`(1)](chgrp.md)
* [`chown`(1)](chown.md) * [`chown`(1)](chown.md)
* [`chmod`(2)](../man2/chmod.md)

View file

@ -27,6 +27,5 @@ $ chown anon:anon file
## See also ## See also
* [`chgrp`(1)](chmod.md) * [`chgrp`(1)](chgrp.md)
* [`chown`(1)](chown.md) * [`chmod`(1)](chmod.md)
* [`chmod`(2)](../man2/chmod.md)

View file

@ -19,7 +19,7 @@ but largely incompatible with
## Options ## Options
* `-P`, `--prompt`: Set the prompt format string. See [Prompts](#Prompts) for more details. * `-P`, `--prompt`: Set the prompt format string. See [Prompts](#prompts) for more details.
* `-X`, `--no-init`: Don't switch to the xterm alternate buffer on startup. * `-X`, `--no-init`: Don't switch to the xterm alternate buffer on startup.
* `-e`, `--quit-at-eof`: Immediately exit less when the last line of the document is reached. * `-e`, `--quit-at-eof`: Immediately exit less when the last line of the document is reached.
* `-m`, `--emulate-more`: Apply `-Xe`, set the prompt to `--More--`, and disable * `-m`, `--emulate-more`: Apply `-Xe`, set the prompt to `--More--`, and disable

View file

@ -0,0 +1 @@
checksum.md

View file

@ -0,0 +1 @@
checksum.md

View file

@ -0,0 +1 @@
checksum.md

View file

@ -0,0 +1 @@
checksum.md

View file

@ -27,7 +27,7 @@ int getopt_long(int argc, char** argv, const char* short_options, const struct o
## Description ## Description
`getopt()` and `getopt_long()` parse options according to the syntax specified `getopt()` and `getopt_long()` parse options according to the syntax specified
in [`getopt`(5)](../getopt.md). `getopt()` only supports short options; in [`getopt`(5)](../man5/getopt.md). `getopt()` only supports short options;
`getopt_long()` supports both short and long options. `getopt_long()` supports both short and long options.
One invocation of either function extracts at most one option from command line One invocation of either function extracts at most one option from command line

View file

@ -7,8 +7,8 @@ mem - physical system memory
`/dev/mem` is a character device file that is used by other programs to examine `/dev/mem` is a character device file that is used by other programs to examine
the physical memory. the physical memory.
Trying to [`mmap`(2)](../mmap.md) a physical range results either with success, Trying to [`mmap`(2)](../man2/mmap.md) a physical range results either with success,
or with an error. When invoking [`mmap`(2)](../mmap.md) on bad memory range, or with an error. When invoking [`mmap`(2)](../man2/mmap.md) on bad memory range,
the kernel will write a message about it to the kernel log. the kernel will write a message about it to the kernel log.
By default, the kernel limits the areas which can be accessed. The allowed areas By default, the kernel limits the areas which can be accessed. The allowed areas
@ -21,11 +21,11 @@ mknod /dev/mem c 1 1
chmod 660 /dev/mem chmod 660 /dev/mem
``` ```
## Returned error values after [`mmap`(2)](../mmap.md) ## Returned error values after [`mmap`(2)](../man2/mmap.md)
* `EINVAL`: An access violation was detected. * `EINVAL`: An access violation was detected.
* `ENOMEM`: The requested range would wrap around, creating an access violation. * `ENOMEM`: The requested range would wrap around, creating an access violation.
## See also ## See also
* [`mmap`(2)](../mmap.md) * [`mmap`(2)](../man2/mmap.md)

View file

@ -57,7 +57,7 @@ Note that heredocs _must_ be listed in the same order as they are used after a s
##### Variable Reference ##### Variable Reference
Any sequence of _Identifier_ characters, or a _Special Variable_ following a `$`. Any sequence of _Identifier_ characters, or a _Special Variable_ following a `$`.
Variables may be followed by a _Slice_ (see [Slice](#Slice)) Variables may be followed by a _Slice_ (see [Slice](#slice))
##### Slice ##### Slice
Variables may be sliced into, which will allow the user to select a subset of entries in the contents of the variable. Variables may be sliced into, which will allow the user to select a subset of entries in the contents of the variable.