File: file4

package info (click to toggle)
xxdiff 1%3A2.5-2
  • links: PTS
  • area: main
  • in suites: woody
  • size: 3,936 kB
  • ctags: 3,420
  • sloc: cpp: 16,125; ansic: 16,104; sh: 1,684; makefile: 295; yacc: 238; lex: 218; python: 216
file content (57 lines) | stat: -rwxr-xr-x 1,506 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#!/bin/bash  #-- not used anyhow
#
# $Id: file4,v 1.2 2001/05/04 05:08:47 blais Exp $
#
sdjhsdsjhsj
# echo "Bashrc executed"

export SHELL=bash


# Reset environment in bash if requested.  The reason why we do this is for
# setting stuff that depends on the calling process environment, e.g. with
# ClearCase.

if [ -f "$HOME/.cache.bashenv" ]; then
    # echo "Resetting environment in .bashrc"
    . $HOME/conf/.env.pre
    . $HOME/conf/.env.scopes
    . $HOME/conf/.env.post
fi

# check for cache first
if [ ! -f "$HOME/.cache.disable" -a \
     -f "$HOME/.cache.bashrc.$SITE.$PLAT.$HOST" ]; then

    echo "Using cached .bashrc";
    . $HOME/.cache.bashrc.$SITE.$PLAT.$HOST

else

    #---------------------------------------------------------------------------
    # source scope-specific bashrc's
    
    if [ -f $HOME/conf/share/.bashrc.local ]; then
    	. $HOME/conf/share/.bashrc.local
    fi
    
    if [ -f $HOME/conf/site/$SITE/.bashrc.local ]; then
    	. $HOME/conf/site/$SITE/.bashrc.local
    fi
    
    if [ -f $HOME/conf/plat/$PLAT/.bashrc.local ]; then
    	. $HOME/conf/plat/$PLAT/.bashrc.local
    fi
    
    if [ -f $HOME/conf/host/$HOST/.bashrc.local ]; then
    	. $HOME/conf/host/$HOST/.bashrc.local
    fi
    
    if [ -f $HOME/conf/site/$SITE/plat/$PLAT/.bashrc.local ]; then
    	. $HOME/conf/site/$SITE/plat/$PLAT/.bashrc.local
    fi
    
    if [ -f $HOME/conf/host/$HOST/plat/$PLAT/.bashrc.local ]; then
    	. $HOME/conf/host/$HOST/plat/$PLAT/.bashrc.local
    fi
fi