bashrc: turn on globasciiranges shell option

This commit is contained in:
Josh Holtrop 2015-07-02 14:21:00 -04:00
parent e8087a1cbb
commit b5b6d38583

3
bashrc
View File

@ -1,6 +1,9 @@
# If not running interactively, don't do anything
[[ "$-" != *i* ]] && return
# make [a-z] and [A-Z] work correctly
shopt -s globasciiranges
# Aliases
if [ -f "${HOME}/.bash_aliases" ]; then
source "${HOME}/.bash_aliases"