Skip to content

Commit

Permalink
doc: codeblocks for code in examples
Browse files Browse the repository at this point in the history
  • Loading branch information
purarue committed Sep 27, 2024
1 parent f2c9e3d commit 3acb5eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 3acb5eb

Please sign in to comment.