GNU 코어의 Utils의 (가능한 패키지 여기에 Windows 용)는 분할 유틸리티가 포함되어 있습니다. 그것은 나를 위해 잘 작동합니다 :-)
--help 설명서는 다음과 같습니다.
Usage: split [OPTION] [INPUT [PREFIX]]
Output fixed-size pieces of INPUT to PREFIXaa, PREFIXab, ...; default
size is 1000 lines, and default PREFIX is `x'. With no INPUT, or when INPUT
is -, read standard input.
Mandatory arguments to long options are mandatory for short options too.
-a, --suffix-length=N use suffixes of length N (default 2)
-b, --bytes=SIZE put SIZE bytes per output file
-C, --line-bytes=SIZE put at most SIZE bytes of lines per output file
-d, --numeric-suffixes use numeric suffixes instead of alphabetic
-l, --lines=NUMBER put NUMBER lines per output file
--verbose print a diagnostic to standard error just
before each output file is opened
--help display this help and exit
--version output version information and exit
SIZE may have a multiplier suffix: b for 512, k for 1K, m for 1 Meg.
예를 들어 input.txt를 100Mb 청크로 분할하고 행 끝에서만 분할
split input.txt -C 100m
xaa, xab, xac 등의 출력 파일을 제공합니다.
grep -n
로head
및tail
파일의 덩어리를 볼 수 있습니다. 예를 들어를grep -n "something" file.txt
반환합니다95625: something
. 해당 줄과 그 아래에 9 줄을 표시하여 총 10 줄을 원합니다head -n 95635 file.txt | tail -n 10
.