ref.misc - jgrey4296/jgrey4296.github.io GitHub Wiki
To find files, but not search .git directories:
find ? -type f -a -not -name "DS_Store" -print -o -type d -name ".git" -prune
https://jqlang.github.io/jq/
for checking file watchers
adding MANPATH adds a custom location
Pandoc creates man pages from markdown: `pandoc ms.1.md -s -t man -o ms.1`
Man expects pages to be gzipped
https://gitlab.com/procps-ng/procps
https://github.com/aristocratos/btop
https://htop.dev/
https://learnbyexample.github.io/learn_gnugrep_ripgrep/
for documentation, install ‘eamcs-common-non-dfsg’
https://github.com/bahamas10/bash-style-guide line length sorting
cat testfile | awk '{ print length, $0 }' | sort -n | cut -d" " -f2-
https://www.nushell.sh/book/