From 011180e56c79a72c68d5e10e2147bb9586459f90 Mon Sep 17 00:00:00 2001 From: aphel Date: Thu, 15 Apr 2021 05:47:03 +0100 Subject: [PATCH] Document input format for multiple arguments --- guides/source/command_line.md | 1 + 1 file changed, 1 insertion(+) diff --git a/guides/source/command_line.md b/guides/source/command_line.md index d2ac04e8a1..bc6dbbaffe 100644 --- a/guides/source/command_line.md +++ b/guides/source/command_line.md @@ -649,6 +649,7 @@ Invocation of the tasks will look like: ```bash $ bin/rails task_name $ bin/rails "task_name[value 1]" # entire argument string should be quoted +$ bin/rails "task_name[value 1,value2,value3]" # separate multiple args with a comma $ bin/rails db:nothing ```