mirror of
https://github.com/mr0xb/dotfiles.git
synced 2026-08-27 19:34:57 -04:00
5 lines
112 B
Shell
5 lines
112 B
Shell
|
|
hred() {
|
|
[ $# -ge 1 -a -f "$1" ] && input="$1" || input="-"
|
|
cat $input | grep -E -v '^\s*$|^\s*#.*$'
|
|
}
|