bc, dd, nc, sed, tree, yacc: update links (#12956)

This commit is contained in:
spageektti 2024-06-13 10:30:46 +02:00 committed by GitHub
parent 1131a51767
commit 4b0e6f85d2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
6 changed files with 6 additions and 6 deletions

View File

@ -2,7 +2,7 @@
> An arbitrary precision calculator language.
> See also: `dc`.
> More information: <https://manned.org/man/bc.1>.
> More information: <https://manned.org/bc.1>.
- Start an interactive session:

View File

@ -1,7 +1,7 @@
# dd
> Convert and copy a file.
> More information: <https://manned.org/man/dd.1p>.
> More information: <https://manned.org/dd.1p>.
- Make a bootable USB drive from an isohybrid file (such as `archlinux-xxx.iso`):

View File

@ -1,7 +1,7 @@
# nc
> Redirect I/O into a network stream through this versatile tool.
> More information: <https://manned.org/man/nc.1>.
> More information: <https://manned.org/nc.1>.
- Start a listener on the specified TCP port and send a file into it:

View File

@ -2,7 +2,7 @@
> Edit text in a scriptable manner.
> See also: `awk`, `ed`.
> More information: <https://manned.org/man/sed.1posix>.
> More information: <https://manned.org/sed.1posix>.
- Replace all `apple` (basic regex) occurrences with `mango` (basic regex) in all input lines and print the result to `stdout`:

View File

@ -1,7 +1,7 @@
# tree
> Show the contents of the current directory as a tree.
> More information: <https://manned.org/man/tree>.
> More information: <https://manned.org/tree>.
- Print files and directories up to 'num' levels of depth (where 1 means the current directory):

View File

@ -2,7 +2,7 @@
> Generate an LALR parser (in C) with a formal grammar specification file.
> See also: `bison`.
> More information: <https://manned.org/man/yacc.1p>.
> More information: <https://manned.org/yacc.1p>.
- Create a file `y.tab.c` containing the C parser code and compile the grammar file with all necessary constant declarations for values. (Constant declarations file `y.tab.h` is created only when the `-d` flag is used):