Bash 嵌套循环,日期和数字的混合
我正在尝试输出一系列具有不同日期和相关数字的命令。每小时例如。
我试图在循环中执行的输出是:
shell.sh filename<number e.g. between 1-24> <date e.g. 20100928> <number e.g. between 1-24> <id>
所以基本上上面的代码将生成一个输出,每个特定的一天执行 24 次,并具有唯一的 4 位 id。
我正在考虑有一个嵌套循环,因为批号需要是唯一的。
有人可以帮忙吗?
I am trying to output a range of commands with different dates and numbers associated. for each hour eg.
Output im trying to do in a loop is:
shell.sh filename<number e.g. between 1-24> <date e.g. 20100928> <number e.g. between 1-24> <id>
So basically the the above will generate an output done 24 times for each particular day with a unique 4 digit id.
I was thinking of having a nested loop, as the batch number needs to be unique.
can anyone help?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
目前尚不清楚为什么需要嵌套循环,或者是否需要迭代某个日期范围。但脚本将如下所示:
... 输出将如下所示:
希望它有帮助!
It is not clear why you need a nested loop or whether you need to iterate over a range of dates or not. But the script will look like this:
... and the output will be like this:
Hope it helps!
我想做一个嵌套循环,因为我需要的输出如下:(
正如您所看到的,一个新的集合在不同的日期开始,这个过程持续进行 n 个日期迭代)
这就是为什么我正在考虑嵌套循环:-S
I wanted to do a nested loop as output i need is like:
(as you can see a new set starts for a different date, this process keeps going for n date iteration)
Thats why I was thinking nested loop :-S