From 508ccd1c47123ce0857f945fa6826a8c4ad65751 Mon Sep 17 00:00:00 2001 From: Senior Software Engineer <65561479+julian-kunzig@users.noreply.github.com> Date: Thu, 1 Oct 2020 13:54:55 -0400 Subject: [PATCH] [proposal] Added note for passing input values There is not much explanation how to pass input values in running script and I could find out that in Readme.md only. Of course it's not wrong but I think documentation needs to contains this definitely. --- concepts/shell-scripts/shell-scripts.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/concepts/shell-scripts/shell-scripts.md b/concepts/shell-scripts/shell-scripts.md index 3c1279212..5bf851fe0 100644 --- a/concepts/shell-scripts/shell-scripts.md +++ b/concepts/shell-scripts/shell-scripts.md @@ -67,6 +67,12 @@ Then you can run: sails run send-email-proof-reminders ``` +To provide inputs values: + +```bash +sails run send-email-proof-reminders --template='alternative-reminder' +``` + For more detailed information on usage, see the [`whelk` README](https://github.com/sailshq/whelk/blob/master/README.md).