Bash seq: Difference between revisions
Jump to navigation
Jump to search
(Created page with "=Internal= * Linux =Overview= <syntaxhighlight lang='bash'> seq 0 3 0 1 2 3 </syntaxhighlight>") |
No edit summary |
||
Line 1: | Line 1: | ||
=External= | |||
* https://www.lifewire.com/uses-of-linux-seq-command-4011324 | |||
=Internal= | =Internal= | ||
Line 4: | Line 6: | ||
=Overview= | =Overview= | ||
The Linux command seq prints a sequence of numbers: | |||
<syntaxhighlight lang='bash'> | <syntaxhighlight lang='bash'> |
Latest revision as of 00:19, 3 March 2020
External
Internal
Overview
The Linux command seq prints a sequence of numbers:
seq 0 3
0
1
2
3