Compare commits

..

No commits in common. "63ce7e8bbb7b55977117749793cfc3d03adaadb6" and "ef7b4245864537e34cf52e18b67631b4b3ad5377" have entirely different histories.

5 changed files with 5 additions and 33 deletions

@ -8,19 +8,7 @@ The Linux Knowledge-Base provides quick-start guides for working with terminal p
Install `make`, `recutils`, and any fuzzy-finder (i.e. `sk`, `fzy`, or `fzf`). Install `make`, `recutils`, and any fuzzy-finder (i.e. `sk`, `fzy`, or `fzf`).
## Usage Usage: `make`
```sh
make
make database
recsel db.rec -q database
recsel db.rec -q gpg
recsel db.rec -e "title = 'ssh'"
recsel db.rec -e "title ~ 'ssh'"
recsel db.rec -e "title ~ 'bash'" -R title,wordcount
```
# Style # Style

@ -6,20 +6,7 @@ tags: [ "fun" ]
- `asciiquarium` - `asciiquarium`
- `cbonsai -lim "$(fortune)"` - `cbonsai -lim "$(fortune)"`
```sh ```bash
cow=$(cowsay -l | sort -R | head -1) cow=$(cowsay -l | sort -R | head -1)
fortune -s | figlet | cowsay -nf $cow | lolcat fortune -s | figlet | cowsay -nf $cow | lolcat
``` ```
Watch the [Collatz Conjecture](https://en.wikipedia.org/wiki/Collatz_conjecture) collapse:
```sh
x="$(du -sc ~/.cache | tr -d '[:alpha:]' | tail -1)"
until [ "$x" -eq "1" ]; do
test "$(( x % 2 ))" -eq 0 && x=$(( x / 2 )) || \
x=$(( x * 3 + 1 ))
clear -x
figlet "$x" | lolcat
sleep 1
done
```

@ -342,12 +342,11 @@ apt install $PROGRAM
Remove `lolcat`, because it's useless: Remove `lolcat`, because it's useless:
```sh ```bash
sudo apt remove lolcat sudo apt remove lolcat
``` ```
...and that's pretty much it. ... and that's pretty much it. You can move, create, destroy, install things, and look things up.
You can move, create, destroy, install things, and look things up.
# Review # Review

@ -1,7 +1,6 @@
--- ---
title: "gpg" title: "gpg"
tags: [ "vim", "data", "GPG" ] tags: [ "vim", "data", "GPG" ]
requires: [ "GPG Basics", "vim basics" ]
--- ---
The `vim-gnupg` plugin lets vim edit gpg-encrypted files as if they were unencrypted. The `vim-gnupg` plugin lets vim edit gpg-encrypted files as if they were unencrypted.

@ -1,7 +1,6 @@
--- ---
title: "Board Games with Recfiles" title: "Board Games"
tags: [ "data", "recfiles", "games" ] tags: [ "data", "recfiles", "games" ]
requires: "Recfiles"
--- ---
You can play with a board games database from boardgamegeek.com. You can play with a board games database from boardgamegeek.com.