Toggle navigation
Toggle navigation
This project
Loading...
Sign in
YPT
/
jmeter
·
Commits
Go to a project
GitLab
Go to dashboard
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
Rong
8 years ago
Commit
f12e5275b30bff4d7bc028a815ed0b9a5d59dec6
1 parent
c071fc34
add
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
57 additions
and
2 deletions
gor/git.sh
gor/restart_YPT_AUTO_MONITOR.sh
gor/yohoPerformanceTestAuto_Job.sh
gor/git.sh
0 → 100755
View file @
f12e527
#/bin/bash
function
usage
(){
echo
"----------------------------------"
echo
"参数说明:"
echo
"-t : 操作类型"
echo
"-f : 父路径"
echo
"-c : 文件名"
echo
""
echo
"举例:sh git.sh -t
\"
reset_pull
\"
-f /opt/jmeter/script -c test.jmx"
echo
"----------------------------------"
}
if
[[
$#
-lt 1
]]
;
then
usage
exit
1
fi
while
getopts
"t:f:c:"
arg
do
case
$arg
in
t
)
gittype
=
$OPTARG
;;
f
)
fatherPath
=
$OPTARG
;;
c
)
filename
=
$OPTARG
;;
h
)
usage
exit
1
;;
?
)
echo
"未知的参数!"
exit
1
;;
esac
done
if
[[
"
$gittype
"
==
"reset_pull"
&&
-n
"
$fatherPath
"
]]
;
then
cd
$fatherPath
pwd
git reset --hard origin/master
git pull
fi
if
[[
"
$gittype
"
==
"add_push"
&&
-n
"
$fatherPath
"
&&
-n
"
$filename
"
]]
;
then
cd
$fatherPath
pwd
git add
$filename
git commit -m
"commit by shell"
git push
fi
...
...
gor/restart_YPT_AUTO_MONITOR.sh
View file @
f12e527
...
...
@@ -7,4 +7,4 @@ ps -ef | grep "yohoPerformanceTestAuto_Job.sh" | grep -v grep | cut -c 9-15 | xa
if
[
"
$1
"
==
"stop"
]
;
then
exit
fi
${
basepath
}
/yohoPerformanceTestAuto_Job.sh 1>/dev/null 2>&1 &
${
basepath
}
/yohoPerformanceTestAuto_Job.sh
$1
1>/dev/null 2>&1 &
...
...
gor/yohoPerformanceTestAuto_Job.sh
View file @
f12e527
...
...
@@ -8,7 +8,7 @@ basepath=$(cd `dirname $0`; pwd)
while
true
do
${
basepath
}
/yohoPerformanceTestAuto_Gor_InfluxDB.sh
${
basepath
}
/yohoPerformanceTestAuto_Gor_InfluxDB.sh
$1
1>/dev/null 2>&1
sleep 7
done
...
...
Please
register
or
login
to post a comment