A command-line tool for publishing gists, inspired by icholy/gist.
Read a file from stdin:
sh
cat notes.md | gist
Set a file name:
sh
cat error.log | gist -f "weird-bug.log"
Make a public Gist:
sh
cat file.sh | gist -p
Multiple files?
sh
gist src/*.rs
I want the Gist's URL copied to my clipboard, when it's done:
```sh
echo stuff | gist | xclip
echo something | gist | pbcopy ```
Installation currently requires cargo, just cargo install gist
.
For authentication, the program looks for an environment variable called
GITHUB_GIST_TOKEN
or GITHUB_TOKEN
: it is mandatory to create a "secret"
gist (the default).
You can generate one at: https://github.com/settings/tokens
Then append it to your .profile
, or something with:
```sh export GITHUB_TOKEN="blah blah blah"
export GITHUBGISTTOKEN="blah blah blah" ```
MIT.
Yes please: file issues, or better send patches and pull-requests.