dotfiles/.zshrc.d/hred.zsh
2022-12-03 20:51:19 -05:00

5 lines
112 B
Shell

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