blob: afcf6fd258cb125f6ae58aae0ef4dc950c3a48de (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/hint/bash
# General settings
shopt -s checkwinsize # update the values of LINES and COLUMNS
shopt -s globstar # Let ** recursively scan directories
# Why is this not on by default?
# "We have a cached value, but it isn't valid anymore. Should we trash it?"
# "Duh, yes!"
shopt -s checkhash
|