Updated gitignore and Engine/bin for ticket #1

This commit is contained in:
DavidWyand-GG 2012-09-20 12:46:44 -04:00
parent 1cca6c95f2
commit 08d5ba86f7
593 changed files with 72474 additions and 0 deletions

View file

@ -0,0 +1,13 @@
#!/bin/bash
exec osascript <<EOF
tell application "safari"
set theURL to "$1"
activate
if not (document 1 exists) then
make new document at beginning of documents
end if
tell front window
set URL of document 1 to theURL
end tell
end tell