2019.5.8 • Published 7 years ago
gist-description v2019.5.8
get/set gist description
Installation
$ [sudo] npm i -g gist-descriptionConfig
$ export GITHUB_TOKEN="<GITHUB_TOKEN>"Scripts usage
usage: gist-description id [description]Examples
$ gist-description <id> "new description"
$ gist-description <id>
new descriptionupdate multiple gists description
$ pip install gist-ida) folder name as description
find ~/git/gists -type d -maxdepth 1 -exec bash -l -c 'id=$(gist-id "$0"); desc="$(basename "$0")"; [[ -n $id ]] && gist-description $id $desc' {} \;b) description.txt as description
$ find ~/git/gists -type d -maxdepth 1 -exec bash -l -c 'id=$(gist-id "$0"); desc="$(cat description.txt 2> /dev/null)"; [[ -n $id ]] && [[ -n $desc ]] && gist-description $id $desc' {} \;