regularely check for new jira issues

This commit is contained in:
Morgan Wattiez
2019-07-31 13:28:08 +02:00
parent d8c4dc06dc
commit d1a226db48
2 changed files with 16 additions and 0 deletions

View File

@ -64,3 +64,16 @@ function top_commands() {
function top_commands_full() {
history | cat | sed 's/^[0-9 TAB]*//g' | awk '{CMD[$0]++;count++;}END { for (a in CMD)print CMD[a] " " CMD[a]/count*100 "%\t" a; }' | sort -nr | nl | head -n50
}
function istherenewissues() {
LASTISSUE=$(newissues | sed $'s,\x1b\\[[0-9;]*[a-zA-Z],,g' | head -n1 | awk '{print $2}')
if [[ -f ".newjiraissue" ]]
then
previous_jira_issue=$(cat ".newjiraissue")
if [ "$LASTISSUE" != "$previous_jira_issue" ]; then
newissues
else
echo "no new issue"
fi
fi
echo "$LASTISSUE" > .newjiraissue
}