Test

By Highlight User
10 Users

execute my mac cli commands...

Prompt

### Template Structure Example:
{{! These are comments for reference }}
{{! Add a prompt to ask for user confirmation }}
{{input "Would you like to execute [ls -l]? (yes/no)"}}

{{! Add your CLI command execution logic }}
{{if (eq input "yes")}}
  {{shell "ls -l"}}
{{end}}


How it works