split.1
来自「Unix操作系统minix 2.0源码」· 1 代码 · 共 60 行
1
60 行
SPLIT(1) Minix Programmer's Manual SPLIT(1)
NAME
split - split a large file into several smaller files
SYNOPSIS
split [-n] [file [prefix]]
OPTIONS
-n Number of lines per piece (default: 1000)
EXAMPLES
split -200 file # Split file into pieces of 200 lines each
split file z # Split file into zaa, zab, etc.
DESCRIPTION
Split reads file and writes it out in n-line pieces. By default, the
pieces are called xaa, xab, etc. The optional second argument can be
used to provide an alternative prefix for the output file names.
SEE ALSO
cat(1).
1
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?