mirror of
https://github.com/Erreur32/cheat.git
synced 2024-11-16 17:08:35 +01:00
5 lines
182 B
Text
5 lines
182 B
Text
# Split a file based on pattern
|
|
csplit input.file '/PATTERN/'
|
|
|
|
# Use prefix/suffix to improve resulting file names
|
|
csplit -f 'prefix-' -b '%d.extension' input.file '/PATTERN/' '{*}'
|