Skip to content

Instantly share code, notes, and snippets.

@stevegt
Created August 1, 2020 16:08
Show Gist options
  • Save stevegt/88d9712b16515bc96eb1ce068a995877 to your computer and use it in GitHub Desktop.
Save stevegt/88d9712b16515bc96eb1ce068a995877 to your computer and use it in GitHub Desktop.
#!/bin/bash -e
# usage: gist-from-file {filename} [optional description goes here]
file="$1"
shift
desc="$@"
# gist-paste is from the ubuntu 'gist' package
cat $file | gist-paste --skip-empty -o -f $file -d "$desc"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment