-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathuclog
More file actions
executable file
·37 lines (37 loc) · 797 Bytes
/
uclog
File metadata and controls
executable file
·37 lines (37 loc) · 797 Bytes
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
#!/bin/tcsh
set us=lishuai860113
echo t1000.T1000/Solaris
echo x4100.X4100/Solaris
echo solaris.PE860/Solaris
echo fedora.PE860/Fedora
echo ubuntu.PE860/Ubuntu
echo freebsd.PE860/FreeBSD
echo aix.P510/AIX
echo -n "Please enter choice:"
set choice=$<
switch ($choice)
case t1000:
ssh `echo $us`@t1000.unix-center.net
breaksw
case x4100:
ssh `echo $us`@x4100.unix-center.net
breaksw
case solaris:
ssh `echo $us`@solaris.unix-center.net
breaksw
case fedora:
ssh `echo $us`@fedora.unix-center.net
breaksw
case ubuntu:
ssh `echo $us`@ubuntu.unix-center.net
breaksw
case freebsd:
ssh `echo $us`@freebsd.unix-center.net
breaksw
case aix:
ssh `echo $us`@aix.unix-center.net
breaksw
default:
echo Invalid Option
breaksw
endsw