w: split out of common and add -i to osx, uniq: additions, seq: add page
This commit is contained in:

committed by
Peter Tripp

parent
ec36f84cca
commit
525f436cc8
15
pages/common/seq.md
Normal file
15
pages/common/seq.md
Normal file
@@ -0,0 +1,15 @@
|
||||
# seq
|
||||
|
||||
> Output a sequence of numbers to stdout.
|
||||
|
||||
- Sequence from 1 to 10:
|
||||
|
||||
`seq 10`
|
||||
|
||||
- Every 3rd number from 5 to 20:
|
||||
|
||||
`seq 5 3 20`
|
||||
|
||||
- Separate the output with a space instead of a newline:
|
||||
|
||||
`seq -s " " 5 3 20`
|
@@ -1,6 +1,6 @@
|
||||
# uniq
|
||||
|
||||
> Report or omit repeated lines.
|
||||
> Output the unique lines from the given input or file.
|
||||
|
||||
- Display each line once:
|
||||
|
||||
|
Reference in New Issue
Block a user