Fix unrecognized relative links

This commit is contained in:
flokoe 2024-04-02 21:36:43 +02:00
parent 02ecdc79fb
commit 9b7adabbaf
No known key found for this signature in database
4 changed files with 4 additions and 5 deletions

View File

@ -473,4 +473,4 @@ fmt++;
- [Code snip: Print a horizontal - [Code snip: Print a horizontal
line](../../snipplets/print_horizontal_line.md) uses some `printf` examples line](../../snipplets/print_horizontal_line.md) uses some `printf` examples
- [Greg's BashFAQ 18: How can I use numbers with leading zeros in a - [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)

View File

@ -43,11 +43,10 @@ If not, see [http://www.gnu.org/licenses/](http://www.gnu.org/licenses/).
- [nonportable](scripting/nonportable.md) - [nonportable](scripting/nonportable.md)
- [debuggingtips](scripting/debuggingtips.md) - [debuggingtips](scripting/debuggingtips.md)
- [terminalcodes](scripting/terminalcodes.md) - [terminalcodes](scripting/terminalcodes.md)
- [tutoriallist](scripting/tutoriallist)
## Code snippets ## 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). See also [some Bash source code excerpts](misc/readthesourceluke.md).

View File

@ -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) - [Non-portable syntax and command uses](../scripting/nonportable.md)
- [bashchanges](../scripting/bashchanges.md) - [bashchanges](../scripting/bashchanges.md)
- [Greg's BashFAQ 061: List of essential features added (with the - [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 - [Bash <-> POSIX Portability guide with a focus on
Dash](http://mywiki.wooledge.org/Bashism) Dash](http://mywiki.wooledge.org/Bashism)
- <http://mywiki.wooledge.org/BashPitfalls> - <http://mywiki.wooledge.org/BashPitfalls>

View File

@ -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. commands where stdout/stdin is connected via a real pipe.
Pipelines are one or more [simple 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: connects their input and output), for example:
ls /etc | wc -l ls /etc | wc -l