
gist
List of commands for gist:
-
gist:tldr:23b2b gist: List all public gists for any user.$ gist --list ${username}try on your machineexplain this command
-
gist:tldr:427fc gist: Update a gist using the ID from URL.$ gist --update ${GIST_ID} ${file-txt}try on your machineexplain this command
-
gist:tldr:61229 gist: List your public and private gists.$ gist --listtry on your machineexplain this command
-
gist:tldr:711c4 gist: Read contents from `stdin` and create a gist from it.$ ${echo "hello world"} | gisttry on your machineexplain this command
-
gist:tldr:a986f gist: Create a private gist with a description.$ gist --private --description "${A meaningful description}" ${file-txt}try on your machineexplain this command
-
gist:tldr:d550d gist: Log in in gist on this computer.$ gist --logintry on your machineexplain this command
-
gist:tldr:f5e7a gist: Create a gist from any number of text files.$ gist ${file-txt} ${file2-txt}try on your machineexplain this command