aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSebastiano Tronto <sebastiano@tronto.net>2023-10-21 11:14:54 +0200
committerSebastiano Tronto <sebastiano@tronto.net>2023-10-21 11:14:54 +0200
commit80d20ed80f2d1f27d454f72b213d8547230e7a8c (patch)
tree0bda65bcac857abc76cc39e30e6cb623e7b051c5 /src
parentdbbe363116f081dbd8f1c113439eeb3e949f8a1a (diff)
downloadsebastiano.tronto.net-80d20ed80f2d1f27d454f72b213d8547230e7a8c.tar.gz
sebastiano.tronto.net-80d20ed80f2d1f27d454f72b213d8547230e7a8c.zip
Added reference to blog series in manpage posts
Diffstat (limited to 'src')
-rw-r--r--src/blog/2022-05-29-man/man.md4
-rw-r--r--src/blog/2022-06-08-more/more.md4
-rw-r--r--src/blog/2022-07-07-shutdown/shutdown.md4
-rw-r--r--src/blog/2022-09-13-sh-1/sh-1.md4
-rw-r--r--src/blog/2022-09-20-sh-2/sh-2.md4
-rw-r--r--src/blog/2022-10-01-tetris/tetris.md4
-rw-r--r--src/blog/2022-12-24-ed/ed.md4
-rw-r--r--src/blog/2023-03-30-dc/dc.md2
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
3I have been using Linux as my main operating system for the 5I have been using Linux as my main operating system for the
4last 14 years, and as my only one for the last 10. Needless 6last 14 years, and as my only one for the last 10. Needless
5to say, I really like it. However, at the end of last year I 7to 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
263If you are curious, check the [new post](../2022-09-05-man-col)! 265If 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
3In the second episode of this blog series we are going to cover a UNIX 5In the second episode of this blog series we are going to cover a UNIX
4pager. Instead of the popular less(1), we are going to check out the 6pager. Instead of the popular less(1), we are going to check out the
5classic more(1). 7classic more(1).
@@ -190,3 +192,5 @@ can be used to pipe arbitrary portions of the current file to an external
190command. But apart from this I could easily live in the pre-1985 era. 192command. But apart from this I could easily live in the pre-1985 era.
191 193
192See you next time! 194See 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
3I would like to write about more interesting things, but I do not have 5I would like to write about more interesting things, but I do not have
4time or energy to do so. I need to shut down for a little while. 6time 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
124were logged in. But I am not going to do it now. 126were logged in. But I am not going to do it now.
125 127
126Good night. 128Good 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
3After [last time's short entry](../2022-07-07-shutdown) and a 5After [last time's short entry](../2022-07-07-shutdown) and a
4relatively long hiatus, we are back in business with a big one! 6relatively 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
383another long post, or two shorter ones. 385another long post, or two shorter ones.
384 386
385See you next time! 387See 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
3This is the second and last part of our exciting sh(1) manual page 5This is the second and last part of our exciting sh(1) manual page
4read. This time we are going to learn about *commands* and *builtins*. 6read. This time we are going to learn about *commands* and *builtins*.
5In case you have missed it, check out the [first part](../2022-09-13-sh-1) 7In 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
395Anyway, I hope you enjoyed this long double-post and that you may have 397Anyway, I hope you enjoyed this long double-post and that you may have
396learnt something new. See you next time! 398learnt 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
3Sometimes you just need to relax and have some fun :-) 5Sometimes 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
147or just update your `$PATH`. 149or 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
3I enjoyed writing a little introduction at the beginning of every 5I enjoyed writing a little introduction at the beginning of every
4post of this series, but I am running out of ideas. I am not much 6post of this series, but I am running out of ideas. I am not much
5of fiction writer. I'll skip this time, maybe I'll get back to doing 7of 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
419I highly suggest reading the article 421I 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)
421by Karl Dahlke, the author of [edbrowse](https://edbrowse.org). 423by 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
3For this episode I have decided to go back to the basics, in multiple 5For this episode I have decided to go back to the basics, in multiple
4ways. Indeed `dc`, the *desk calculator*, is: 6ways. Indeed `dc`, the *desk calculator*, is:
5 7

Generated with cgit - Back to sebastiano.tronto.net