blob: e6188094c7cad439e021d88644e203cd71b7cf6c [file] [log] [blame]
Jari Aalto31859422009-01-12 13:36:28 +00001LC_ALL=en_US.UTF-8
Jari Aaltocce855b1998-04-17 19:52:44 +00002unset LC_ALL
3unset LANG
4export LC_ALL=C
5export LANG=C
6
7set +o posix
8
9# attempting to source a non-existant file is not an error...
10. /tmp/source-notthere
11
12echo after bad source 1
13
14set -o posix
15
16# ...unless you're in posix mode
17. /tmp/source-notthere
18
19echo after bad source 2