I want to split a file after a delimiter, not before the delimiter, which is what csplit does. I can't find anything anywhere! (Also, why would there be a tool that specifically splits before a pattern, but not one that splits after it?)
File:
a
b
c
d
split at c
output:
file1:
a
b
c
file 2
d