blob: d89aecb54841c9eed972f36a726d3b3430acbaba (
plain) (
blame)
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
|
#! /bin/csh
# MKIRAF -- Setup the IRAF environment for a user. Should be called from the
# directory from which the user will thereafter type "cl" to start a session.
# The following definitions are site dependent. [SITEDEP]
set iraf = "/iraf/iraf"
set imdir = "/iraf/imdirs"
set cachedir = "/iraf/cache"
set ttymsg =\
"Terminal types: xgterm,xterm,gterm,vt640,vt100,etc."
# ------------- (end of site dependent definitions) ------------------------
unalias rm mkdir pwd echo mkdir sed whoami pushd popd
# The following kludge is for Solaris, which doesn't have whoami.
if (! $?USER) then
setenv USER `whoami`
endif
alias whoami "(echo $USER)"
# Protect against running mkiraf in an iraf system directory.
pushd $iraf >& /dev/null; set irafdir = `pwd`; popd >& /dev/null
if ("`pwd | grep $irafdir`" != "") then
if ("`pwd | grep iraf/local`" == "") then
echo "Error: current directory is not an iraf user login directory"
exit 1
endif
endif
# Process command-line arguments.
set user_term = "none"
set init = 0
set quiet = 0
while ($#argv >= 1)
if ("$argv[1]" == "-t" || "$argv[1]" == "-term") then
set user_term = $argv[2]
shift
else if ("$argv[1]" == "-i" || "$argv[1]" == "-init") then
set init = 1
else if ("$argv[1]" == "-q" || "$argv[1]" == "-quiet") then
set quiet = 1
else
echo "Unknown flag '"$argv[1]"'"
endif
shift
end
# Make an empty "uparm" (user parameter) directory.
if (! -e uparm) then
if ($quiet == 0) then
echo '-- creating a new uparm directory'
endif
mkdir uparm
else
if ($init == 0) then
echo -n 'Initialize uparm? (y|n): '
set yesno = $<
if ($yesno == 'y' || $yesno == 'yes') then
echo '-- initializing uparm'
rm -rf uparm; mkdir uparm
endif
else
if ($quiet == 0) then
echo '-- initializing uparm'
endif
/bin/rm -rf uparm; mkdir uparm
endif
endif
if (-e login.cl) then
mv -f login.cl login.cl.OLD
endif
# Edit the login.cl file, setting the user's home directory, default image
# directory, and terminal.
if ($user_term == "none") then
echo $ttymsg
echo -n 'Enter terminal type: '
echo $< | sed -e "s;.*;s+U_TERM+&+;" > _sed
else
echo $user_term | sed -e "s;.*;s+U_TERM+&+;" > _sed
endif
pwd | sed -e "s;.*;s+U_HOME+&/+;" >> _sed
pwd | sed -e "s;.*;s+U_UPARM+&/uparm/+;" >> _sed
if (! (-e "$imdir" && -w "$imdir") ) then
set imdir = HDR$
whoami | sed -e "s;.*;s+U_IMDIR+${imdir}/+;" >> _sed
else
whoami | sed -e "s;.*;s+U_IMDIR+${imdir}/&/+;" >> _sed
whoami | sed -e "s;.*;mkdir $imdir/& 2> /dev/null;" | sh
endif
if (! (-e "$cachedir" && -w "$cachedir") ) then
set cachedir = /tmp/
whoami | sed -e "s;.*;s+U_CACHEDIR+${cachedir}/+;" >> _sed
else
whoami | sed -e "s;.*;s+U_CACHEDIR+${cachedir}/&/+;" >> _sed
whoami | sed -e "s;.*;mkdir $cachedir/& 2> /dev/null;" | sh
endif
whoami | sed -e "s;.*;s+U_USER+&+;" >> _sed
sed -f _sed < $iraf/unix/hlib/login.cl > login.cl; rm _sed
if ($quiet == 0) then
echo 'A new LOGIN.CL file has been created in the current directory.'
echo 'You may wish to review and edit this file to change the defaults.'
endif
|