8 lines
206 B
Text
8 lines
206 B
Text
|
#!/usr/bin/env sh
|
||
|
|
||
|
updates=$(checkupdates)
|
||
|
text=$(echo "$updates" | wc -l)
|
||
|
tooltip=$(echo "$updates" | sed 's/$/\\n/' | tr -d '\n' | sed 's/\\n$//')
|
||
|
|
||
|
echo "{\"text\": \"$text\", \"tooltip\": \"$tooltip\"}"
|