使用 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'
}