我使用以下命令运行示例。
java -cp bin examples.generators.SimpleCircuitGenerator
此代码输出运行SimpleCircuitGenerator的时间。我想知道如何多次运行相同的代码。如何使用终端机进行操作?我的目标是测量多次运行SimpleCircuitGenerator的时间。
答案 0 :(得分:1)
您可以通过在bash中使用for
循环来实现:https://www.cyberciti.biz/faq/bsd-appleosx-linux-bash-shell-run-command-n-times/
答案 1 :(得分:1)
body {
margin: 0 ;
padding: 0;
margin-top: 130px;
overflow-x: hidden;
}
.nav-menu a img {
float: left;
margin-left: 10px;
}
.nav-menu ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: rgba(0, 0, 0, 0.9);
margin-top: -130px;
}
.nav-menu li {
float: left;
}
.nav-menu li a, .dropbtn {
display: inline-block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
.nav-menu li a:hover, .dropdown:hover .dropbtn {
border-top: 2px solid #ff0000;
}
.nav-menu li.dropdown {
display: inline-block;
}
.nav-menu .dropdown-content {
display: none;
position: absolute;
background-color: #f9f9f9;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
}
.nav-menu .dropdown-content a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
text-align: left;
}
.nav-menu .dropdown-content a:hover {
background-color: #ff0000;
color: #fff;
}
.nav-menu .dropdown:hover .dropdown-content {
display: block;
}
.nav-menu li.social {
float: right;
padding-right: 100px;
}
.nav-menu .social .infobtn {
background-color: transparent;
color: white;
padding: 16px;
font-size: 16px;
border: none;
cursor: pointer;
}
.nav-menu .social .infobtn:hover, .nav-menu .social li.infobtn:focus {
border-top: 2px solid #ff0000 !important;
}
li.info .nav-menu .social{
position: relative;
display: inline-block;
float: right
}
.info-content {
display: none;
position: absolute;
background-color: #f1f1f1;
min-width: 160px;
overflow: auto;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
}
.info-content a {
color: #000 !important;
padding: 12px 16px;
text-decoration: none;
display: block !important;
}
.info a:hover {
background-color: #ff0000;
color: #fff !important;
}
.show {
display: block;
}
.language-selector select {
width: 200px;
padding: 10px 20px;
margin-bottom: 25px;
-webkit-appearance: none;
-moz-appearance: none;
text-indent: 1px;
text-overflow: '';
cursor: pointer;
}
.globe::after {
font-family: "Font Awesome 5 Free";
content: "\f0ac";
visibility: visible;
font-weight: 900;
display: inline-block;
float: right;
position: relative;
z-index: 2;
margin-top: -50px;
margin-right: 15px;
}
.language-selector select::-ms-expand {
display: none;
}
答案 2 :(得分:0)
您可以对以下内容使用简单的bash
循环:
for i in {1..10}; do java -cp bin examples.generators.SimpleCircuitGenerator; done
。
这可能为您提供更多信息:How to run a command multiple times, using bash shell?
答案 3 :(得分:0)
您可以重复以下链接中提到的终端命令。
http://www.mactricksandtips.com/2012/02/loop-repeat-terminal-commands.html
但是我建议您添加一个for循环并获取重复次数作为参数。因此,您可以根据需要运行该命令的次数。
答案 4 :(得分:0)
我认为最快的解决方案是让您通过脚本运行它。我假设您使用基于Linux的终端。打开文件并输入:
#!/bin/bash
# Basic until loop
counter=1
until [ $counter -gt 10 ]
do
java -cp bin examples.generators.SimpleCircuitGenerator
((counter++))
done
在这种情况下,它将运行多达10次。您可以根据需要对其进行修改。将文件另存为name_of_file.sh并运行。
答案 5 :(得分:0)
创建一个bash文件example.sh,将以下行放入其中并运行./example.sh。它将运行10次,每次运行都需要打印时间。还要检查Print execution time of a shell command
#!/bin/sh
for i in {1..10}
do
java -cp bin examples.generators.SimpleCircuitGenerator
done