From b5b6d38583cf91a8dd373fdceb283d3a0af52f26 Mon Sep 17 00:00:00 2001 From: Josh Holtrop Date: Thu, 2 Jul 2015 14:21:00 -0400 Subject: [PATCH] bashrc: turn on globasciiranges shell option --- bashrc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bashrc b/bashrc index 32350ff..aabe15a 100755 --- a/bashrc +++ b/bashrc @@ -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"