Correction de la gestion des valeurs contenant « : »
This commit is contained in:
parent
0ffe004dd4
commit
1592e3b1e9
1 changed files with 2 additions and 2 deletions
|
@ -44,7 +44,7 @@ human_time() {
|
|||
echo "status" >&"$IN"
|
||||
while read -t 0.1 -u "$OUT" output
|
||||
do
|
||||
[[ "$output" =~ : ]] && o[${output%%:*}]="${output##*: }"
|
||||
[[ "$output" =~ : ]] && o[${output%%:*}]="${output#*: }"
|
||||
done
|
||||
|
||||
# Boucle principale
|
||||
|
@ -85,7 +85,7 @@ do
|
|||
echo "currentsong" >&"$IN" || self-reset
|
||||
while read -t 0.1 -u "$OUT" output
|
||||
do
|
||||
[[ "$output" =~ : ]] && o[${output%%:*}]="${output##*: }"
|
||||
[[ "$output" =~ : ]] && o[${output%%:*}]="${output#*: }"
|
||||
done
|
||||
|
||||
# Choix des couleurs selon l’état
|
||||
|
|
Loading…
Reference in a new issue