Blog is moving

My blog is moving to http://victormendonca.com/blog/. If you are looking for a specific or older post you are in the right place Otherwise check out my new page for more up to date content.

Monday, March 25, 2013

Bash tips: Use bash's built-in brace expansion to display a range of numbers

Use bash's built-in brace expansion to display a range of numbers.

So "echo {1..5}" will expand to "1 2 3 4 5".

$ echo {1..5}
1 2 3 4 5

No comments: