Script 'schedule': fix case when PLAYER is a part of 'game_url' or 'result'.
This commit is contained in:
parent
d86663c426
commit
afacbfcaea
3
schedule
3
schedule
@ -184,6 +184,9 @@ info_output_term() {
|
|||||||
if [[ -n "$PLAYER" ]]; then
|
if [[ -n "$PLAYER" ]]; then
|
||||||
players=$(grep -o "[^ ]*${PLAYER}[^ ]*" <<< "$line")
|
players=$(grep -o "[^ ]*${PLAYER}[^ ]*" <<< "$line")
|
||||||
for name in $players; do
|
for name in $players; do
|
||||||
|
# PLAYER is a part of 'game_url' or 'result'
|
||||||
|
[[ "$name" =~ ^http:\/\/ || "$name" =~ ^(1-0|0-1|1\/2)$ ]] && continue
|
||||||
|
|
||||||
line=$(sed -E "s/(${name})/\\$(tput setaf 1)\1\\$(tput sgr0)/g" <<< "$line")
|
line=$(sed -E "s/(${name})/\\$(tput setaf 1)\1\\$(tput sgr0)/g" <<< "$line")
|
||||||
done
|
done
|
||||||
fi
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user