diff options
Diffstat (limited to 'bin/prompt')
-rwxr-xr-x | bin/prompt | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -20,6 +20,15 @@ help() { Display a prompt and return a value corresponding to the response. + + + Examples: + + Conditionally run download command + + if prompt 'Download files?'; then + run_download; + fi EOF } |