blob: 6a826c754d58c31284aba4fa2e1953eaa5b10e19 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#!/bin/csh -f
# Allow a previously defined $iraf to be used.
if ( ! ( $?iraf )) then
setenv iraf /iraf/iraf/
endif
# Allow a previously defined $IRAFARCH to be used.
if ( ! ( $?IRAFARCH )) then
setenv IRAFARCH `$iraf/unix/hlib/irafarch.csh -actual`
endif
source $iraf/unix/hlib/irafuser.csh
set path = ($FAKEHOME/bin $path)
set cdpath = ($iraf $iraf/pkg $iraf/noao $iraf/sys $iraf/unix $iraf/unix/boot)
# The world'd most obvious alias ....
alias iraf "xgterm -e cl &"
rehash
|