mirror of
https://github.com/InsanusMokrassar/MicroUtils.git
synced 2024-11-22 08:13:49 +00:00
Update and rename changelog_info_retriever to changelog_parser.sh
This commit is contained in:
parent
45a9a95888
commit
7f7369b3a8
@ -1,24 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
function parse() {
|
|
||||||
version=$1
|
|
||||||
|
|
||||||
while IFS= read -r line && [ -z "`echo $line | grep -e "^#\+ $version"`" ]
|
|
||||||
do
|
|
||||||
: # do nothing
|
|
||||||
done
|
|
||||||
|
|
||||||
while IFS= read -r line && [ -z "`echo $line | grep -e "^#\+"`" ]
|
|
||||||
do
|
|
||||||
echo "$line"
|
|
||||||
done
|
|
||||||
}
|
|
||||||
|
|
||||||
version=$1
|
|
||||||
file=$2
|
|
||||||
|
|
||||||
if [ -n "$file" ]; then
|
|
||||||
parse $version < "$file"
|
|
||||||
else
|
|
||||||
parse $version
|
|
||||||
fi
|
|
24
changelog_parser.sh
Executable file
24
changelog_parser.sh
Executable file
@ -0,0 +1,24 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
function parse() {
|
||||||
|
version="$1"
|
||||||
|
|
||||||
|
while IFS= read -r line && [ -z "`echo "$line" | grep -e "^#\+ $version"`" ]
|
||||||
|
do
|
||||||
|
: # do nothing
|
||||||
|
done
|
||||||
|
|
||||||
|
while IFS= read -r line && [ -z "`echo "$line" | grep -e "^#\+"`" ]
|
||||||
|
do
|
||||||
|
echo "$line"
|
||||||
|
done
|
||||||
|
}
|
||||||
|
|
||||||
|
version="$1"
|
||||||
|
file="$2"
|
||||||
|
|
||||||
|
if [ -n "$file" ]; then
|
||||||
|
parse "$version" < "$file"
|
||||||
|
else
|
||||||
|
parse "$version"
|
||||||
|
fi
|
Loading…
Reference in New Issue
Block a user