diff options
| author | Sebastiano Tronto <sebastiano@tronto.net> | 2023-10-18 19:35:05 +0200 |
|---|---|---|
| committer | Sebastiano Tronto <sebastiano@tronto.net> | 2023-10-18 19:35:05 +0200 |
| commit | 22c4f3e4220bf6c71c54f9e2f23d90a53a818b53 (patch) | |
| tree | 02696eb7d1e90b17216da5a63059df73164495c1 | |
| parent | a25444038e15c934a8399ae1e3a585b27a938a11 (diff) | |
| download | sebastiano.tronto.net-22c4f3e4220bf6c71c54f9e2f23d90a53a818b53.tar.gz sebastiano.tronto.net-22c4f3e4220bf6c71c54f9e2f23d90a53a818b53.zip | |
Added blog series index
| -rwxr-xr-x | build.sh | 1 | ||||
| -rw-r--r-- | src/series/series.md | 37 |
2 files changed, 38 insertions, 0 deletions
| @@ -50,6 +50,7 @@ makeblogindexandfeed() { | |||
| 50 | sed "s/TITLE/Blog/" < top.html > "$bf" | 50 | sed "s/TITLE/Blog/" < top.html > "$bf" |
| 51 | { echo '<h1 id="blog">Blog</h1>'; | 51 | { echo '<h1 id="blog">Blog</h1>'; |
| 52 | echo '<table id="blog">'; | 52 | echo '<table id="blog">'; |
| 53 | echo '<a href="../series">Blog series</a> - '; | ||
| 53 | echo '<a href="feed.xml">RSS feed</a>'; } >> "$bf" | 54 | echo '<a href="feed.xml">RSS feed</a>'; } >> "$bf" |
| 54 | 55 | ||
| 55 | cp feed-top.xml "$ff" | 56 | cp feed-top.xml "$ff" |
diff --git a/src/series/series.md b/src/series/series.md new file mode 100644 index 0000000..75bc301 --- /dev/null +++ b/src/series/series.md | |||
| @@ -0,0 +1,37 @@ | |||
| 1 | # List of blog series | ||
| 2 | |||
| 3 | I my [blog](../blog) I sometimes write multiple posts on the same | ||
| 4 | topic, or posts in multiple parts. This page contains the list of these | ||
| 5 | "blog series". | ||
| 6 | |||
| 7 | **Note:** This is *not* a full list of my blog posts divided by topic. | ||
| 8 | |||
| 9 | ## The man page reading club | ||
| 10 | |||
| 11 | In these posts I walk through the [manual page](https://man.openbsd.org) | ||
| 12 | of a classic UNIX utility, highlighting the most important features. | ||
| 13 | Each post is introduced by a fictional context. | ||
| 14 | |||
| 15 | * [man(1)](../blog/2022-05-29-man) | ||
| 16 | * [more(1)](../blog/2022-06-08-more) | ||
| 17 | * [shutdown(8)](../blog/2022-07-07-shutdown) | ||
| 18 | * [sh(1) part 1](../blog/2022-09-13-sh-1) | ||
| 19 | * [sh(1) part 2](../blog/2022-09-20-sh-2) | ||
| 20 | * [tetris(6)](../blog/2022-10-01-tetris) | ||
| 21 | * [ed(1)](../blog/2022-12-24-ed) | ||
| 22 | * [dc(1)](../blog/2023-03-30-dc) | ||
| 23 | |||
| 24 | ## UNIX text filter | ||
| 25 | |||
| 26 | In this series I explore three classic UNIX commands, in increasing order | ||
| 27 | of complexity: `grep`, `sed` and `awk`. Work in progress. | ||
| 28 | |||
| 29 | * [grep](../blog/2023-08-20-grep) | ||
| 30 | * sed [coming soon] | ||
| 31 | * awk [coming less soon] | ||
| 32 | |||
| 33 | ## The UNIX shell as an IDE | ||
| 34 | |||
| 35 | This series contains only one post for now, but I may add more in the future. | ||
| 36 | |||
| 37 | * [Look stuff up with sed](../blog/2022-06-12-shell-ide-sed) | ||
