changelog parser script has been added

This commit is contained in:
InsanusMokrassar 2020-09-22 15:15:20 +06:00
parent acd9505a5d
commit 7043647584
1 changed files with 16 additions and 0 deletions

16
changelog_info_retriever Executable file
View File

@ -0,0 +1,16 @@
#!/bin/bash
version=$1
read -r
while [ -z "`echo $REPLY | grep -e "^#\+ $version"`" ]
do
read -r
done
read -r
while [ -z "`echo $REPLY | grep -e "^#\+"`" ]
do
echo "$REPLY"
read -r
done