Skip to content

Instantly share code, notes, and snippets.

@uiur
Last active August 29, 2015 14:22
Show Gist options
  • Save uiur/53968cd2ddc456354047 to your computer and use it in GitHub Desktop.
Save uiur/53968cd2ddc456354047 to your computer and use it in GitHub Desktop.
サーバー不要でセキュアな社内Gyazoクライアント
#!/usr/bin/env ruby
image_file = "/tmp/gyazo_printer#{$$}.png"
pdf_file = "/tmp/gyazo_printer#{$$}.pdf"
`screencapture -i #{image_file}`
`sips -s format pdf #{image_file} --out #{pdf_file}`
`lpr #{pdf_file}`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment