From 4b0e6f85d2f1d25a34ddfa8f8269380c9dc90e68 Mon Sep 17 00:00:00 2001 From: spageektti Date: Thu, 13 Jun 2024 10:30:46 +0200 Subject: [PATCH] bc, dd, nc, sed, tree, yacc: update links (#12956) --- pages/common/bc.md | 2 +- pages/common/dd.md | 2 +- pages/common/nc.md | 2 +- pages/common/sed.md | 2 +- pages/common/tree.md | 2 +- pages/common/yacc.md | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/pages/common/bc.md b/pages/common/bc.md index e6abc6992b..a2b8212c8d 100644 --- a/pages/common/bc.md +++ b/pages/common/bc.md @@ -2,7 +2,7 @@ > An arbitrary precision calculator language. > See also: `dc`. -> More information: . +> More information: . - Start an interactive session: diff --git a/pages/common/dd.md b/pages/common/dd.md index 5acad90744..1b590adbcf 100644 --- a/pages/common/dd.md +++ b/pages/common/dd.md @@ -1,7 +1,7 @@ # dd > Convert and copy a file. -> More information: . +> More information: . - Make a bootable USB drive from an isohybrid file (such as `archlinux-xxx.iso`): diff --git a/pages/common/nc.md b/pages/common/nc.md index 0545780ae9..60127b6cb8 100644 --- a/pages/common/nc.md +++ b/pages/common/nc.md @@ -1,7 +1,7 @@ # nc > Redirect I/O into a network stream through this versatile tool. -> More information: . +> More information: . - Start a listener on the specified TCP port and send a file into it: diff --git a/pages/common/sed.md b/pages/common/sed.md index f39b712b81..e1f382293b 100644 --- a/pages/common/sed.md +++ b/pages/common/sed.md @@ -2,7 +2,7 @@ > Edit text in a scriptable manner. > See also: `awk`, `ed`. -> More information: . +> More information: . - Replace all `apple` (basic regex) occurrences with `mango` (basic regex) in all input lines and print the result to `stdout`: diff --git a/pages/common/tree.md b/pages/common/tree.md index 0774cffb20..a089e2c0ab 100644 --- a/pages/common/tree.md +++ b/pages/common/tree.md @@ -1,7 +1,7 @@ # tree > Show the contents of the current directory as a tree. -> More information: . +> More information: . - Print files and directories up to 'num' levels of depth (where 1 means the current directory): diff --git a/pages/common/yacc.md b/pages/common/yacc.md index a598cadc42..b84f368e2d 100644 --- a/pages/common/yacc.md +++ b/pages/common/yacc.md @@ -2,7 +2,7 @@ > Generate an LALR parser (in C) with a formal grammar specification file. > See also: `bison`. -> More information: . +> More information: . - 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):