终端命令:带 echo 的 For 循环
我以前从未在终端中使用过这样的命令,但我知道这是可能的。例如我会怎么写:
for (int i = 0; i <=1000; i++) {
echo "http://example.com/%i.jpg",i
}
I've never used commands in terminal like this before but I know its possible. How would I for instance write:
for (int i = 0; i <=1000; i++) {
echo "http://example.com/%i.jpg",i
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
OS X 上的默认 shell 是 bash。你可以这样写:
这是有关循环构造的 bash 参考手册的链接。
The default shell on OS X is bash. You could write this:
Here is a link to the reference manual of bash concerning loop constructs.
您是否在 bash shell 中:
Is you are in bash shell:
jot 也可以工作(在 bash shell 中)
jot would work too (in bash shell)
您还可以使用 for 循环将数据追加或写入文件。例如:
“>>”用于追加。
“>”是用来写的。
you can also use for loop to append or write data to a file. example:
">>" is used to append.
">" is used to write.
通过使用jot:
By using jot: