I created a bash script for show notification 5 seconds in mac OS.
#!/bin/bash
arr[0]="0"
arr[1]="1"
arr[2]="2"
arr[3]="3"
arr[4]="4"
arr[5]="5"
arr[6]="6"
while true; do
rand=$[$RANDOM % ${#arr[@]}]
text=${arr[$rand]}
osascript -e 'display notification '"$text"' with title "hello"'
sleep 5
done
but show notification with title hello and description $text. How can use the $text variable in this command?
Pass the value of
"$text"
as an argument to a static script.or
As an aside,
$[...]
is an extremely old and extremely obsolete form of arithmetic expansion. Use$((...))
instead.