なぜコマンドが期待通りに動作しないのでしょうか?
これが私の命令です:
touch resources/views/front/user/{index, show, create, edit}.blade.php
私が期待していたのは、そのパスに4つのファイルを作成することでしたが、代わりに{index、
答え1
一言で -空白:
$ echo {index, show, create, edit}.blade.php
{index, show, create, edit}.blade.php
しかし
$ echo {index,show,create,edit}.blade.php
index.blade.php show.blade.php create.blade.php edit.blade.php