regularely check for new jira issues
This commit is contained in:
@ -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
|
||||
}
|
||||
|
Reference in New Issue
Block a user