diff options
Diffstat (limited to 'livetimes.sh')
-rwxr-xr-x | livetimes.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/livetimes.sh b/livetimes.sh index 4b22639..5f633f1 100755 --- a/livetimes.sh +++ b/livetimes.sh @@ -25,7 +25,7 @@ _liveresult() { for json in $(echo "${livetimes}" | jq -r '.[] | @base64'); do if [[ $(_jq '.service_number') != $outroute ]]; then result=$(echo $result | sed 's/,$//') - result="$result | $(_jq '.destination')[$(_jq '.service_number')] - $(_jq '.eta'), " + result="$result | Dest: $(_jq '.destination')[$(_jq '.service_number')] - ETAs: $(_jq '.eta'), " elif [ $outroute = $outroute ]; then result="$result $(_jq '.eta'), " fi |