9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# Copyright (C) 2000 by Peter J. Gawthrop
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
###############################################################
if [ -f "$1_sub.sh" ]; then
echo Using "$1_sub.sh"
exit
else
#Inform user
echo Creating $1_sub.sh
fi
|
>
>
>
|
|
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# Copyright (C) 2000 by Peter J. Gawthrop
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.1 2000/03/15 21:23:20 peterg
## Initial revision
##
###############################################################
if [ -f "$1_sub.sh" ]; then
#echo Using "$1_sub.sh"
exit
else
#Inform user
echo Creating $1_sub.sh
fi
|