Forrest logo
back to context overview

gum

List of commands for gum:

  • gum:tldr:413d9 gum: Format text to include emojis.
    $ gum format -t ${emoji} "${:smile: :heart: hello}"
    try on your machine
    explain this command
  • gum:tldr:49ef6 gum: Open an interactive confirmation prompt and exit with either `0` or `1`.
    $ gum confirm "${Continue?}" --default=false --affirmative "${Yes}" --negative "${No}" ${select}
    try on your machine
    explain this command
  • gum:tldr:5e378 gum: Interactively pick a specific option to print to `stdout`.
    $ gum choose "${option_1}" "${option_2}" "${option_3}"
    try on your machine
    explain this command
  • gum:tldr:aa0f6 gum: Open an interactive prompt for the user to input a string with a specific placeholder.
    $ gum input --placeholder "${value}"
    try on your machine
    explain this command
  • gum:tldr:c3b5e gum: Interactively prompt for multi-line text (CTRL + D to save) and write to `data.txt`.
    $ gum write > ${data-txt}
    try on your machine
    explain this command
back to context overview