I have a large text file with content set up like this:
---
title: Lorim Ipsum Dolar
---
Lorim ipsum content
---
title: Excelvier whatever
---
Lorim ipsum content goes here.
I'm trying to split up this file into individual files using csplit
.
The individual files would have content formatted like this:
---
title: Lorim Ipsum Dolar
---
Lorim ipsum content
I was hoping to be able to regex the ---, newline & title like so ---
title
But I'm not able to select it with…
csplit -k products.txt '/---[^
]title/' {99}
I've tried lots of variations to no avail. I keeping getting "no match".
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…