Difference between revisions of "Seq"

From Linuxintro
imported>ThorstenStaerk
(Created page with "seq is a command to show a sequence of numbers. For example the sequence from 1 to 5 can be shown like this: # seq 1 5 1 2 3 4 5")
(No difference)

Revision as of 10:24, 19 February 2012

seq is a command to show a sequence of numbers. For example the sequence from 1 to 5 can be shown like this:

# seq 1 5
1
2
3
4
5