From 9b7adabbaf90dbc5112d307d3355cfa7c6fb18d9 Mon Sep 17 00:00:00 2001 From: flokoe Date: Tue, 2 Apr 2024 21:36:43 +0200 Subject: [PATCH] Fix unrecognized relative links --- docs/commands/builtin/printf.md | 2 +- docs/index.md | 3 +-- docs/scripting/obsolete.md | 2 +- docs/syntax/basicgrammar.md | 2 +- 4 files changed, 4 insertions(+), 5 deletions(-) diff --git a/docs/commands/builtin/printf.md b/docs/commands/builtin/printf.md index 92b8800..4292cb2 100644 --- a/docs/commands/builtin/printf.md +++ b/docs/commands/builtin/printf.md @@ -473,4 +473,4 @@ fmt++; - [Code snip: Print a horizontal line](../../snipplets/print_horizontal_line.md) uses some `printf` examples - [Greg's BashFAQ 18: How can I use numbers with leading zeros in a - loop, e.g., 01, 02?](BashFAQ>018) + loop, e.g., 01, 02?](http://mywiki.wooledge.org/BashFAQ/018) diff --git a/docs/index.md b/docs/index.md index 36be41a..e868d7a 100644 --- a/docs/index.md +++ b/docs/index.md @@ -43,11 +43,10 @@ If not, see [http://www.gnu.org/licenses/](http://www.gnu.org/licenses/). - [nonportable](scripting/nonportable.md) - [debuggingtips](scripting/debuggingtips.md) - [terminalcodes](scripting/terminalcodes.md) -- [tutoriallist](scripting/tutoriallist) ## Code snippets -There is a [section that holds small code snippets](snipplets). +There is a [section that holds small code snippets](snipplets/index.md). See also [some Bash source code excerpts](misc/readthesourceluke.md). diff --git a/docs/scripting/obsolete.md b/docs/scripting/obsolete.md index 4215136..11219bd 100644 --- a/docs/scripting/obsolete.md +++ b/docs/scripting/obsolete.md @@ -82,7 +82,7 @@ surprised if you run across someone telling you not to use these. - [Non-portable syntax and command uses](../scripting/nonportable.md) - [bashchanges](../scripting/bashchanges.md) - [Greg's BashFAQ 061: List of essential features added (with the - Bash version tag)](BashFAQ>061) + Bash version tag)](http://mywiki.wooledge.org/BashFAQ/061) - [Bash <-> POSIX Portability guide with a focus on Dash](http://mywiki.wooledge.org/Bashism) - diff --git a/docs/syntax/basicgrammar.md b/docs/syntax/basicgrammar.md index d3598df..3b0492f 100644 --- a/docs/syntax/basicgrammar.md +++ b/docs/syntax/basicgrammar.md @@ -63,7 +63,7 @@ name for a construct. Such a pipeline isn't necessarily a pair of commands where stdout/stdin is connected via a real pipe. Pipelines are one or more [simple -commands](basicgrammar##simple_commands) (separated by the `|` symbol +commands](#simple-commands) (separated by the `|` symbol connects their input and output), for example: ls /etc | wc -l