Forrest logo
back to context overview

gist

List of commands for gist:

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