我想制作一个Applescript,从文本文档中获取文本,如下所示:
property fooBar : [insert string from text document]
tell application "Terminal"
set currentTab to do script "echo" & fooBar
end tell
我该怎么做?
答案 0 :(得分:0)
虽然我不太确切地知道你想要做什么,但我认为你正在尝试使用文本文档的内容来设置终端选项卡的标题。如果是这种情况,这样做,你不需要调用shell脚本。
property foo : missing value
set fileRef to open for access (alias "Aslan:Users:chuck:Desktop:file.txt")
set foo to read fileRef
close access fileRef
tell application "Terminal" to set custom title of selected tab of window 1 to foo
请注意,如果您只想这样做,则不需要属性行。