使用 Applescript 作为 shell 函数
你不仅限于单行 Applescript 代码。在这里,我们采用前两个示例并将它们组合成一个函数。
#!/bin/bash
pageinfo() {
osascript -e \
'tell app "safari"
tell the current tab of window 1
return {url & "\n" & name}
end tell
end tell'
}
你不仅限于单行 Applescript 代码。在这里,我们采用前两个示例并将它们组合成一个函数。
#!/bin/bash
pageinfo() {
osascript -e \
'tell app "safari"
tell the current tab of window 1
return {url & "\n" & name}
end tell
end tell'
}