SPLIT.1
资源名称:os_source.zip [点击查看]
上传用户:datang2001
上传日期:2007-02-01
资源大小:53269k
文件大小:1k
源码类别:
操作系统开发
开发平台:
C/C++
- 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