1
0
mirror of https://github.com/InsanusMokrassar/TelegramBotAPI.git synced 2025-09-02 06:39:41 +00:00

update changelog parser

This commit is contained in:
2020-10-04 17:43:25 +06:00
parent 7478b151eb
commit 8875e2a986

View File

@@ -3,17 +3,14 @@
function parse() {
version=$1
read -r
while [ -z "`echo $REPLY | grep -e "^#\+ $version"`" ]
while IFS= read -r line && [ -z "`echo $line | grep -e "^#\+ $version"`" ]
do
read -r
: # do nothing
done
read -r
while [ -z "`echo $REPLY | grep -e "^#\+"`" ]
while IFS= read -r line && [ -z "`echo $line | grep -e "^#\+"`" ]
do
echo "$REPLY"
read -r
echo "$line"
done
}
@@ -25,5 +22,3 @@ if [ -n "$file" ]; then
else
parse $version
fi