7 lines
133 B
Plaintext
7 lines
133 B
Plaintext
HAS_GLOW="$(command -v glow)"
|
|
|
|
chpwd() {
|
|
[ -z $HAS_GLOW ] && return 0
|
|
find $PWD -maxdepth 1 -iname 'readme.md' -exec glow {} \;
|
|
}
|