dotfiles/.zshrc.d/hred.zsh
2026-05-15 12:58:08 -04:00

5 lines
112 B
Shell

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