File: gmtswitch

package info (click to toggle)
gmt 4.5.7-2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 71,836 kB
  • sloc: ansic: 147,600; sh: 4,943; csh: 1,085; makefile: 1,023; asm: 38
file content (141 lines) | stat: -rwxr-xr-x 3,874 bytes parent folder | download
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
#!/bin/bash
#
#	$Id: gmtswitch,v 1.16 2011/07/13 21:59:15 guru Exp $
#
#	gmtswitch - switch between several installed GMT versions
#
function checkinput() 
{ # Make sure argument is an integer
	echo $1 | grep -Eq '^(\+|-)?[0-9]+$'
	echo $?
}

help=0
if [ $# -gt 1 ]; then
	help=1
fi
if [ $# -eq 1 ] && [ "X$1" = "X-help" ]; then
	help=1
fi
if [ $help -eq 1 ]; then
	cat << EOF >&2
usage: gmtswitch [version]

version, if present, is a unique text pattern identifying a GMT version,
e.g., GMT4.5.7.  If none are given then we list available versions and
let the user choose one.  If the version is given as "init" OR it is the
very first time gmtswitch is run we will initialize the list of versions.
EOF
	exit
fi
#--------------------------------------------------------------------------------
# Get the functionality of echo -n
#--------------------------------------------------------------------------------
if [ x`echo -n` = x ]; then	# echo -n works
	echon()
	{
		echo -n "$*" 
	}
elif [ x`echo -e` = x ]; then	# echo -e works
	echon()
	{
		echo -e "$*"'\c'
	}
else				# echo with escapes better work
	echon()
	{
		echo "$*"'\c'
	}
fi

here=`pwd`
cd ~
home=`pwd`
if [ ! -f $home/.gmtversions ]; then	# No .gmtversions exists yet, first do that part
	cat << EOF >&2

	GMTSWITCH $Revision: 1.16 $
	
gmtswitch helps you modify your environment to allow for the switching back
and forth between several GMT versions, in particular GMT 5.x and previous GMT
versions such as GMT 4.5.7.  First, we need to determine all the GMT versions
currently installed on this platform.  If you have not already installed the latest GMT 5
please CTRL-C at the prompt and do that install first.  Otherwise, hit RETURN
and please be patient while we search your system.

EOF
	echon "==> Press RETURN to continue: " >&2
	read s

	echon "--> Searching..." >&2
	( find / -type d -name 'GMT[34].*' -print > $home/.gmtversions ) 2> /dev/null
	n=`cat $home/.gmtversions | wc -l | awk '{print $1}'`
	cat << EOF >&2
	
There are $n GMT versions currently installed on your system.
Before we can allow for switching you must prepare your environment.

1. CSH OR TCSH USERS
   In your .cshrc or .tcshrc file:

   Change your path statement. Make sure it includes $home/this_gmt/bin
  
2. BASH USERS
   (re)Place these lines in your .profile file:

   Change your PATH statement. Make sure it includes $home/this_gmt/bin
   
Now, please make these edits and logout and back in again.  The next time
you run gmtswitch we will be able to do the switching.
CVS USERS: You will have to manually add the path to the GMT directory since
it is not considered an official release.
EOF
	exit
fi

if [ "X$1" = "XD" ]; then	# First entry is default
	line=`head -1 $home/.gmtversions`
	rm -f $home/this_gmt
	ln -sf $line $home/this_gmt
elif [ $# -eq 1 ]; then
	line=`grep $1 $home/.gmtversions`
	nl=`grep $1 $home/.gmtversions | wc -l`
	if [ $nl -eq 0 ]; then
		echo "Version $1 is not listed among recognized GMT versions" >&2
		echo "Run gmtswitch -help for more information" >&2
		exit
	fi
	if [ $nl -ne 1 ]; then
		echo "Version $1 is not unique among recognized GMT versions" >&2
		echo "Run gmtswitch without argument and choose from a menu" >&2
		exit
	fi
	rm -f $home/this_gmt
	ln -sf $line $home/this_gmt
else
	n=`cat $home/.gmtversions | wc -l | awk '{print $1}'`
	i=0
	while [ $i -lt $n ]; do
		i=`expr $i + 1`
		line=`sed -n ${i}p $home/.gmtversions`
		version=`basename $line`
		echo "$i. Version $version" >&2
	done
	echo "" >&2
	v=-1
	while [ $v -lt 0 ] || [ $v -gt $n ]; do
		echon "Please choose a version (1-$n) [1]: " >&2
		read v
		if [ "X$v" = "X" ]; then
			v=1
		fi
		result=`checkinput $v`
		if [ $result -eq 1 ]; then
			echon "ERROR: You must give an integer from 1-$n" >&2
			v=-1
		fi
	done
	line=`sed -n ${v}p $home/.gmtversions`
	rm -f $home/this_gmt
	ln -sf $line $home/this_gmt
fi