Skip to content

Instantly share code, notes, and snippets.

@cawka
Created May 8, 2015 23:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cawka/e883f03551a0c8772dd0 to your computer and use it in GitHub Desktop.
Save cawka/e883f03551a0c8772dd0 to your computer and use it in GitHub Desktop.
#! /usr/bin/osascript
on run argv
if not (count argv) = 2
return "Usage:\n graffle2pdf <input file> <output file>"
end if
set pwd to do shell script "pwd"
set _input to item 1 of argv as text
set _output to item 2 of argv as text
if not _input starts with "/"
set _input to pwd & "/" & _input
end if
if not _output starts with "/"
set _output to pwd & "/" & _output
end if
try
set _input to (get POSIX file _input as alias)
on error errStr number errorNumber
return "ERROR: File [" & _input & "] does not exists or cannot be opened"
end try
set _output to (get POSIX file _output as string)
tell application id "com.omnigroup.OmniGraffle6"
set docs to (every document whose path is _input)
if (count docs) = 1 then
set doc to item 1 in docs
save doc in file _output
else
open _input
save the first document in file _output
close the first document
end if
end tell
end run
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment