From 3acb5eb4423e0e11856c5370b20b82c09942e084 Mon Sep 17 00:00:00 2001 From: Sean Breckenridge Date: Thu, 26 Sep 2024 19:06:17 -0700 Subject: [PATCH] doc: codeblocks for code in examples --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e82ef93..1ce45ed 100644 --- a/README.md +++ b/README.md @@ -116,8 +116,8 @@ Requires `python 3.8+`/`golang` to install: - [`sort-by-last-col`](./shellscripts/sort-by-last-col) - sorts text by last column of text; columns can vary in length - [`unique`](./shellscripts/unique) - `uniq`, but doesn't require input to be sorted - [`unique-ignore-case`](./shellscripts/unique-ignore-case) - `unique`, but ignores uppercase/lowercase -- [`tally`](./shellscripts/tally) - shorthand for 'sort | uniq -c | sort -n' -- [`group-and-termgraph`](./shellscripts/group-and-termgraph) - takes lines of data and groups/graphs it using [termgraph](https://github.com/mkaz/termgraph). Sort of like a fancy 'sort | uniq -c | sort -n' +- [`tally`](./shellscripts/tally) - shorthand for `sort | uniq -c | sort -n` +- [`group-and-termgraph`](./shellscripts/group-and-termgraph) - takes lines of data and groups/graphs it using [termgraph](https://github.com/mkaz/termgraph). Sort of like a fancy `sort | uniq -c | sort -n` - [`epochdisplay`](./shellscripts/epochdisplay) - given one or more epoch timestamps (`date +"%s"`) prints a readable date. If no args are given, reads from STDIN - [`epochguess`](./shellscripts/epochguess) - reads anything from STDIN. convert any epoch timestamps that looks like a datetime to local-readable timestamps