我想知道為什麼我的命令沒有按我預期的方式運作?
這是我的命令:
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