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
2017-08-03 17:11:49 +0800
Commit
1e8603dbd4ad16f14ac5557fd2b367e585354163
1 parent
42a8b4fb
auto commit by shell by gr
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
shell/getJmxTcName.sh
shell/getJmxTcName.sh
0 → 100755
View file @
1e8603d
#!/bin/bash
path
=
$1
if
[[
! -z
$path
&&
-f
$path
]]
;
then
cat
$path
| grep -e
".*testname=
\"
tc_.*enabled=
\"
true
\"
"
| awk -F
'testname=\"'
'{print $2}'
| awk -F
'\" '
'{print $1}'
fi
...
...
Please
register
or
login
to post a comment