cmderdev / cmder

Lovely console emulator package for Windows
https://cmder.app
MIT License
25.86k stars 2.03k forks source link

Question: Alias arguments without space as separator not working #2960

Closed DrissBoumlik closed 2 months ago

DrissBoumlik commented 2 months ago

Question

Hello I have this alias which worked before pamkallmdl=php artisan make:model $1/$2 -m -c -f $t php artisan make:seeder $2sSeeder so the Idea is type pamkallmdl App/Person to have "App" for $1 and "Person" for $2, but now it seems that $1 takes the whole string "App/Person" ( with the "/" )

Checklist

daxgames commented 2 months ago

Args $1 and $2 need to be separated by spaces on the command line else it is $1.

Not sure how it ever worked if it did.

DrissBoumlik commented 2 months ago

never mind my bad, I wasn't focused :/ , i forgot I used to do , pamkallmdl App Person no / just a space

daxgames commented 2 months ago

No problem, glad you got it working.