Seq

From Linuxintro
Revision as of 10:24, 19 February 2012 by 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")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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