Quiero mostrar una notificación utilizando osascript en terminal, pero el texto que desea mostrar se almacena en un archivo de texto. ¿Cómo puedo mostrar ese texto en la notificación?
Respuestas
¿Demasiados anuncios?
Matthew A. Flinchbaugh
Puntos
41
ammarx
Puntos
106
Kwright02
Puntos
36
Aquí está el soloution completa a mi pregunta inicial sobre que postee:
set listOfCommand to (read POSIX file "path-to/command.txt")
tell application "Terminal"
do script listOfCommand
delay 1
quit
end tell
set listOfShows to (read POSIX file "path-to/dump.txt")
tell application "Safari"
display notification listOfShows with title "Downloads:"
end tell