All Projects → miyagawa → gistp

miyagawa / gistp

Licence: other
Yet another gist command line tool (like gisty)

Programming Languages

perl
6916 projects

Description

Yet another command line client for gist using Perl. Posts a new (public or private) gist, then auto git clone to ~/gists.

Configuration

You might want to set environment variable GIST_DIR (or GISTY_DIR) where gistp automaticaly clones your new gists for you. By default it's ~/gists.

Set global git config as explained in github account page

git config --global github.user your_id
git config --global github.token your_token

Synopsis

echo "foo" | gistp                  post a new gist (no name set) 
echo "foo" | gistp --name "foo.txt" post a new gist (with a name)  
gistp file1.rb file2.pl ...         post a new gist (with names, can be multiple)
gistp --private file1.txt           post a new private gist

Difference with gist and gisty

gist gets your paste from STDIN, so you can't name your script. gisty allows you to post files. gistp does both. gisty has more convenient features like list, pull and sync all of your gists, but gistp doesn't do that. And it's written in Perl, unlike others are in Ruby :)

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].