]> git.pld-linux.org Git - projects/rc-scripts.git/blob - lang.csh
- cleanups in sysinit + fix for shutting down bridge
[projects/rc-scripts.git] / lang.csh
1 #!/bin/csh
2 #
3 #       $Id: lang.csh,v 1.3.2.1 2000/10/18 20:10:45 misiek Exp $
4 #
5
6 test -f /etc/sysconfig/i18n
7 if ($status == 0) then
8
9     if ($?LANG) then
10         setenv LANG
11     endif
12
13     if ($?LC_ALL) then
14         setenv LC_ALL
15     endif
16   
17     if ($?LINGUAS) then
18         setenv LINGUAS
19     endif
20   
21     if ($?SYSTERM) then
22         setenv TERM=$SYSTERM
23     endif
24
25     if ($?_XKB_CHARSET) then
26         setenv _XKB_CHARSET
27     endif
28
29     if ($?INPUTRC) then
30         setenv INPUTRC
31     endif
32
33     if ($?LESSCHARSET) then
34         setenv LESSCHARSET
35     else if ($TERM == linux-lat) then
36         setenv LESSCHARSET latin1
37     endif
38
39 endif
This page took 0.040263 seconds and 3 git commands to generate.