Skip to content

Instantly share code, notes, and snippets.

@corypina
Last active February 7, 2019 20:07
Show Gist options
  • Save corypina/0cc769491ba7dc2200ec5ce7718b3d98 to your computer and use it in GitHub Desktop.
Save corypina/0cc769491ba7dc2200ec5ce7718b3d98 to your computer and use it in GitHub Desktop.
TextExpander Snippet to retrieve Gist
#!/usr/bin/php
<?php
// What is the URI of the Gist? Make sure you've provided a path to the "raw" Gist.
$GistURI = 'http://...';
// Select "Shell Script" from TextExpander content type!
print file_get_contents($GistURI);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment