14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# Call like this:
# mt_ezstep stepname prevstepname command ....
#
if [ "x$1" == "x" ];then
echo "Usage: $usage"
exit
fi
stepname=$1;shift
prevstepname=$1;shift
command=$*
allstatus=99
|
>
>
>
>
|
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# Call like this:
# mt_ezstep stepname prevstepname command ....
#
if [ "x$1" == "x" ];then
echo "Usage: $usage"
exit
fi
# Since the user may not have . on the path and since we are likely to want to
# run test scripts in the current directory add the current dir to the path
export PATH=$PATH:$PWD
stepname=$1;shift
prevstepname=$1;shift
command=$*
allstatus=99
|