diff options
| author | Sebastiano Tronto <sebastiano@tronto.net> | 2023-10-21 11:14:54 +0200 |
|---|---|---|
| committer | Sebastiano Tronto <sebastiano@tronto.net> | 2023-10-21 11:14:54 +0200 |
| commit | 80d20ed80f2d1f27d454f72b213d8547230e7a8c (patch) | |
| tree | 0bda65bcac857abc76cc39e30e6cb623e7b051c5 | |
| parent | dbbe363116f081dbd8f1c113439eeb3e949f8a1a (diff) | |
| download | sebastiano.tronto.net-80d20ed80f2d1f27d454f72b213d8547230e7a8c.tar.gz sebastiano.tronto.net-80d20ed80f2d1f27d454f72b213d8547230e7a8c.zip | |
Added reference to blog series in manpage posts
| -rw-r--r-- | src/blog/2022-05-29-man/man.md | 4 | ||||
| -rw-r--r-- | src/blog/2022-06-08-more/more.md | 4 | ||||
| -rw-r--r-- | src/blog/2022-07-07-shutdown/shutdown.md | 4 | ||||
| -rw-r--r-- | src/blog/2022-09-13-sh-1/sh-1.md | 4 | ||||
| -rw-r--r-- | src/blog/2022-09-20-sh-2/sh-2.md | 4 | ||||
| -rw-r--r-- | src/blog/2022-10-01-tetris/tetris.md | 4 | ||||
| -rw-r--r-- | src/blog/2022-12-24-ed/ed.md | 4 | ||||
| -rw-r--r-- | src/blog/2023-03-30-dc/dc.md | 2 |
8 files changed, 30 insertions, 0 deletions
diff --git a/src/blog/2022-05-29-man/man.md b/src/blog/2022-05-29-man/man.md index 26cad6b..ecbf50d 100644 --- a/src/blog/2022-05-29-man/man.md +++ b/src/blog/2022-05-29-man/man.md | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | # The man page reading club: man(1) | 1 | # The man page reading club: man(1) |
| 2 | 2 | ||
| 3 | *This post is part of [series](../../series)* | ||
| 4 | |||
| 3 | I have been using Linux as my main operating system for the | 5 | I have been using Linux as my main operating system for the |
| 4 | last 14 years, and as my only one for the last 10. Needless | 6 | last 14 years, and as my only one for the last 10. Needless |
| 5 | to say, I really like it. However, at the end of last year I | 7 | to say, I really like it. However, at the end of last year I |
| @@ -261,3 +263,5 @@ markup, pipe the output to col(1) -b instead. | |||
| 261 | ``` | 263 | ``` |
| 262 | 264 | ||
| 263 | If you are curious, check the [new post](../2022-09-05-man-col)! | 265 | If you are curious, check the [new post](../2022-09-05-man-col)! |
| 266 | |||
| 267 | *Next in the series: [more(1)](../2022-06-08-more)* | ||
diff --git a/src/blog/2022-06-08-more/more.md b/src/blog/2022-06-08-more/more.md index 3673f59..5f568e3 100644 --- a/src/blog/2022-06-08-more/more.md +++ b/src/blog/2022-06-08-more/more.md | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | # The man page reading club: more(1) | 1 | # The man page reading club: more(1) |
| 2 | 2 | ||
| 3 | *This post is part of a [series](../../series)* | ||
| 4 | |||
| 3 | In the second episode of this blog series we are going to cover a UNIX | 5 | In the second episode of this blog series we are going to cover a UNIX |
| 4 | pager. Instead of the popular less(1), we are going to check out the | 6 | pager. Instead of the popular less(1), we are going to check out the |
| 5 | classic more(1). | 7 | classic more(1). |
| @@ -190,3 +192,5 @@ can be used to pipe arbitrary portions of the current file to an external | |||
| 190 | command. But apart from this I could easily live in the pre-1985 era. | 192 | command. But apart from this I could easily live in the pre-1985 era. |
| 191 | 193 | ||
| 192 | See you next time! | 194 | See you next time! |
| 195 | |||
| 196 | *Next in the series: [shutdown(8)](../2022-07-07-shutdown)* | ||
diff --git a/src/blog/2022-07-07-shutdown/shutdown.md b/src/blog/2022-07-07-shutdown/shutdown.md index f7acb49..d260942 100644 --- a/src/blog/2022-07-07-shutdown/shutdown.md +++ b/src/blog/2022-07-07-shutdown/shutdown.md | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | # The man page reading club: shutdown(8) | 1 | # The man page reading club: shutdown(8) |
| 2 | 2 | ||
| 3 | *This post is part of a [series](../../series)* | ||
| 4 | |||
| 3 | I would like to write about more interesting things, but I do not have | 5 | I would like to write about more interesting things, but I do not have |
| 4 | time or energy to do so. I need to shut down for a little while. | 6 | time or energy to do so. I need to shut down for a little while. |
| 5 | 7 | ||
| @@ -124,3 +126,5 @@ mainframes and how administrators used to shut them down when multiple users | |||
| 124 | were logged in. But I am not going to do it now. | 126 | were logged in. But I am not going to do it now. |
| 125 | 127 | ||
| 126 | Good night. | 128 | Good night. |
| 129 | |||
| 130 | *Next in the series: [sh(1) - part 1: shell grammar](../2022-09-13-sh-1)* | ||
diff --git a/src/blog/2022-09-13-sh-1/sh-1.md b/src/blog/2022-09-13-sh-1/sh-1.md index 92b2404..1c279a7 100644 --- a/src/blog/2022-09-13-sh-1/sh-1.md +++ b/src/blog/2022-09-13-sh-1/sh-1.md | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | # The man page reading club: sh(1) - part 1: shell grammar | 1 | # The man page reading club: sh(1) - part 1: shell grammar |
| 2 | 2 | ||
| 3 | *This post is part of a [series](../../series)* | ||
| 4 | |||
| 3 | After [last time's short entry](../2022-07-07-shutdown) and a | 5 | After [last time's short entry](../2022-07-07-shutdown) and a |
| 4 | relatively long hiatus, we are back in business with a big one! | 6 | relatively long hiatus, we are back in business with a big one! |
| 5 | 7 | ||
| @@ -383,3 +385,5 @@ rules together. To finish this manual page we are going to need | |||
| 383 | another long post, or two shorter ones. | 385 | another long post, or two shorter ones. |
| 384 | 386 | ||
| 385 | See you next time! | 387 | See you next time! |
| 388 | |||
| 389 | *Next in the series: [sh(1) - part 2: commands and builtins](../2022-09-20-sh-2)* | ||
diff --git a/src/blog/2022-09-20-sh-2/sh-2.md b/src/blog/2022-09-20-sh-2/sh-2.md index 96b2893..3dd9dd1 100644 --- a/src/blog/2022-09-20-sh-2/sh-2.md +++ b/src/blog/2022-09-20-sh-2/sh-2.md | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | # The man page reading club: sh(1) - part 2: commands and builtins | 1 | # The man page reading club: sh(1) - part 2: commands and builtins |
| 2 | 2 | ||
| 3 | *This post is part of a [series](../../series)* | ||
| 4 | |||
| 3 | This is the second and last part of our exciting sh(1) manual page | 5 | This is the second and last part of our exciting sh(1) manual page |
| 4 | read. This time we are going to learn about *commands* and *builtins*. | 6 | read. This time we are going to learn about *commands* and *builtins*. |
| 5 | In case you have missed it, check out the [first part](../2022-09-13-sh-1) | 7 | In case you have missed it, check out the [first part](../2022-09-13-sh-1) |
| @@ -394,3 +396,5 @@ other hand long pages are often more interesting. | |||
| 394 | 396 | ||
| 395 | Anyway, I hope you enjoyed this long double-post and that you may have | 397 | Anyway, I hope you enjoyed this long double-post and that you may have |
| 396 | learnt something new. See you next time! | 398 | learnt something new. See you next time! |
| 399 | |||
| 400 | *Next in the series: [tetris(6)](../2022-10-01-tetris)* | ||
diff --git a/src/blog/2022-10-01-tetris/tetris.md b/src/blog/2022-10-01-tetris/tetris.md index de21b05..dea5c8a 100644 --- a/src/blog/2022-10-01-tetris/tetris.md +++ b/src/blog/2022-10-01-tetris/tetris.md | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | # The man page reading club: tetris(6) | 1 | # The man page reading club: tetris(6) |
| 2 | 2 | ||
| 3 | *This post is part of a [series](../../series)* | ||
| 4 | |||
| 3 | Sometimes you just need to relax and have some fun :-) | 5 | Sometimes you just need to relax and have some fun :-) |
| 4 | 6 | ||
| 5 | ## Boredom | 7 | ## Boredom |
| @@ -145,3 +147,5 @@ $ /usr/games/tetris | |||
| 145 | ``` | 147 | ``` |
| 146 | 148 | ||
| 147 | or just update your `$PATH`. | 149 | or just update your `$PATH`. |
| 150 | |||
| 151 | *Next in the series: [ed(1)](../2022-12-24-ed)* | ||
diff --git a/src/blog/2022-12-24-ed/ed.md b/src/blog/2022-12-24-ed/ed.md index 5cd9701..e566841 100644 --- a/src/blog/2022-12-24-ed/ed.md +++ b/src/blog/2022-12-24-ed/ed.md | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | # The man page reading club: ed(1) | 1 | # The man page reading club: ed(1) |
| 2 | 2 | ||
| 3 | *This post is part of a [series](../../series)* | ||
| 4 | |||
| 3 | I enjoyed writing a little introduction at the beginning of every | 5 | I enjoyed writing a little introduction at the beginning of every |
| 4 | post of this series, but I am running out of ideas. I am not much | 6 | post of this series, but I am running out of ideas. I am not much |
| 5 | of fiction writer. I'll skip this time, maybe I'll get back to doing | 7 | of fiction writer. I'll skip this time, maybe I'll get back to doing |
| @@ -419,3 +421,5 @@ more than one line at the time. If you are interest in this topic | |||
| 419 | I highly suggest reading the article | 421 | I highly suggest reading the article |
| 420 | [The command line philosophy](http://www.eklhad.net/philosophy.html) | 422 | [The command line philosophy](http://www.eklhad.net/philosophy.html) |
| 421 | by Karl Dahlke, the author of [edbrowse](https://edbrowse.org). | 423 | by Karl Dahlke, the author of [edbrowse](https://edbrowse.org). |
| 424 | |||
| 425 | *Next in the series: [dc(1)](../2023-03-30-dc)* | ||
diff --git a/src/blog/2023-03-30-dc/dc.md b/src/blog/2023-03-30-dc/dc.md index 75b27c4..2b0ee0f 100644 --- a/src/blog/2023-03-30-dc/dc.md +++ b/src/blog/2023-03-30-dc/dc.md | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | # The man page reading club: dc(1) | 1 | # The man page reading club: dc(1) |
| 2 | 2 | ||
| 3 | *This post is part of a [series](../../series)* | ||
| 4 | |||
| 3 | For this episode I have decided to go back to the basics, in multiple | 5 | For this episode I have decided to go back to the basics, in multiple |
| 4 | ways. Indeed `dc`, the *desk calculator*, is: | 6 | ways. Indeed `dc`, the *desk calculator*, is: |
| 5 | 7 | ||
