blob: fc581b75b1da9c03ece4b22f5be677efc434d84b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
# This $LANG stuff I inherited from Cygwin, so I'm preserving it for now.
# Although it's broken on Ubuntu and such.
[ -z "${LANG+x}" ] \
&& LANG="$( locale --no-unicode --utf )" \
&& export LANG
[ -n "${BASH_VERSION+x}" ] \
&& [ -r "$HOME/.bashrc" ] \
&& . "$HOME/.bashrc"
|