]> git.pld-linux.org Git - projects/rc-scripts.git/blob - lang.csh
- mount only cpuset subsys cgroup
[projects/rc-scripts.git] / lang.csh
1 #!/bin/csh
2 #
3 # $Id$
4 #
5
6 test -f /etc/sysconfig/i18n
7 if ($status == 0) then
8         if ($?LANG) then
9                 setenv LANG
10         endif
11         if ($?LC_ALL) then
12                 setenv LC_ALL
13         endif
14         if ($?LINGUAS) then
15                 setenv LINGUAS
16         endif
17         if ($?SYSTERM) then
18                 setenv TERM=$SYSTERM
19         endif
20         if ($?_XKB_CHARSET) then
21                 setenv _XKB_CHARSET
22         endif
23         if ($?INPUTRC) then
24                 setenv INPUTRC
25         endif
26         if ($?LESSCHARSET) then
27                 setenv LESSCHARSET
28         else if ($TERM == linux-lat) then
29                 setenv LESSCHARSET latin1
30         endif
31 endif
This page took 0.021441 seconds and 3 git commands to generate.