dorian-times
Print numbers from a start value for each count argument.
Install
gem install dorian-timesAlso included in the aggregate gem:
gem install dorianUsage
times [options] count [count ...]Run times -h for generated option details and times -v for the installed version.
Notes
- Defaults to starting at 1. Use
--start/-sto change the first number.
Examples
Print 1 through 3
times 3Output:
1
2
3
Start at zero
times --start 0 3Output:
0
1
2