Multiple Commands at Once in Run Anything
How can I run multiple commands at once using run anything tool?
I have to run these three Laravel Migration commands.
php artisan migrate:fresh --path=database/migrations/app --database=mysql
php artisan migrate:fresh --path=database/migrations/audit --database=mysql_audit
php artisan migrate
These three commands can be executed at once in the terminal like below
php artisan migrate:fresh --path=database/migrations/app --database=mysql ; php artisan migrate:fresh --path=database/migrations/audit --database=mysql_audit ; php artisan migrate
But this does not work in run anything tool. It says Too many arguments, expected arguments "command".
Can this be achieved in run anything tool? If so how?
请先登录再写评论。