Our buildserver needs to release apps to App Center. App Center allows me to provide a release note file.
The problem is, our ReleaseNotes.md
contains ALL the versions and become to big to for App Center to accept it.
The notes are formatted like this:
# Project - Release Notes - Android
## 1.20.2 - 2020-09-11
* [UID-4782] - Connectivity issues fixed
## 1.20.1 - 2020-09-08
* [UID-4639] - Update Color
* [UID-4760] - Changed some stuff
How can I grab just the first entry and save it to a file?:
## 1.20.2 - 2020-09-11
* [UID-4782] - Connectivity issues fixed
and save it to a file?
If looked into tools like awk, grep, sed and pcergrep but I'm not familiar with these in anyway and I have no idea which one would be the right tool for the job.