Skip to content

Instantly share code, notes, and snippets.

View Gohla's full-sized avatar

Gabriël Konat Gohla

View GitHub Profile
@Gohla
Gohla / export.applescript
Last active November 9, 2015 16:21
Exports OmniGraffle canvasses to .eps and .pdf files for use in latex. Call with ./export.applescript file.graffle generated/
#! /usr/bin/osascript
on replace_string(input, search, replacement)
set oldDelim to AppleScript's text item delimiters
set AppleScript's text item delimiters to search
set textItems to every text item of input
set AppleScript's text item delimiters to replacement
set res to textItems as string
set AppleScript's text item delimiters to oldDelim