computer_knowledge_notes/Software/文本转换/seq.md

23 lines
373 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#### 简介
打印出一串数字
#### 语法
```
seq [option] last # 打印出从到last之间的数字
seq [option] first last # 打印出first到last之间的数字
seq [option] first inc last # 打印出first到last之间的数字数字间相差inc
```
#### 选项
```
-f, --format=FORMAT
-s, --separator=STRING
-w, --equal-width
--help
--version
```