Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hankei6km/0a17435b322afafb86012687ded6efd1 to your computer and use it in GitHub Desktop.
Save hankei6km/0a17435b322afafb86012687ded6efd1 to your computer and use it in GitHub Desktop.
GitHub CLI の gist edit へパイプを接続し、gist を編集する

GitHub CLI の gist edit へパイプを接続し、gist を編集する

Bash(Process Substitution)

$ echo "edit a gist from output piped from another command" | EDITOR="cp "<(cat -) gh gist edit {<gist ID> | <gist URL>} [flags]

Vim

:w !bash -c 'EDITOR="cp "<(cat -) gh gist edit {<gist ID> | <gist URL>} [flags]'

License: CC0 1.0 http://creativecommons.org/publicdomain/zero/1.0/deed.ja

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment