This commit is contained in:
mr0xb 2026-05-27 11:20:09 -04:00
commit 396aae995d
No known key found for this signature in database
11 changed files with 618 additions and 0 deletions

5
.zshrc.d/hred.zsh Normal file
View file

@ -0,0 +1,5 @@
hred() {
[ $# -ge 1 -a -f "$1" ] && input="$1" || input="-"
cat $input | grep -E -v '^\s*$|^\s*#.*$'
}