📋
pimp
  • Home
  • Installation
  • FAQ
  • Getting Started
    • Welcome
    • Expand commands
    • Run tasks
    • Render templates
    • Execute scripts
    • Next steps
  • User Guide
    • Pimpfile
    • Configuration File
    • Command Expander
    • Task Runner
    • Template Engine
      • Functions
    • Script Engine (PimpScript)
    • Go Library
  • Integrations
    • Bash, Zsh, Fish
Powered by GitBook
On this page
  1. Getting Started

Execute scripts

PreviousRender templatesNextNext steps

Last updated 4 years ago

pimp scripts follow the template syntax, but without the {{ and }} delimiters.

/* script.pimp */

printf "Git branches in %s:\n" pwd
range GitBranches
  printf "* %s\n" .
end

Read more about the in the documentation.

Let's finally see the next steps you can follow to learn more about pimp.

Script Engine