Monday, July 28, 2008

Bash 中连续数值

在 Bash 中可以使用 {} 和 .. 标识符来生成一串数值,如:

for i in {1..10}

就可以让 ${i} 在 1 到 10 之间循环。

No comments: