使用url params通过applescript打开本地html文件

时间:2011-10-10 09:26:23

标签: macos terminal applescript osx-lion openurl

我需要一些非常简单的AppleScript帮助。我需要它在mac上用url参数打开一个本地URL。

set str to "open -a 'Firefox' file:///Users/bob/Desktop/someFolder/index.html?val=28"

do shell script str

我找不到用参数打开网页的方法,它总是打开.html。

有人可以帮忙吗?感谢

1 个答案:

答案 0 :(得分:1)

您可能希望使用可编写脚本的Safari:

tell application "Safari"
    make new document with properties {URL:"http://stackoverflow.com/questions/7710803/open-a-local-html-file-with-url-params-through-applescript?bob=bob"}
end tell

open命令是一个通用函数,用于打开任何程序的任何文件。它只会查找文件位置并忽略其余字符串。