Reputation: 5576
I have forked a php application They have instructed as follows.
1.Application uses:
I have installed everything as per instructions.
Install and configure the application by running the following commands
composer install
mv .env.example .env
When I run mv .env.example .env
as per instructions I get the following error
'mv' is not recognized as an internal or external command, operable program or batch file.
any help or suggestions will be helpful
Upvotes: 13
Views: 30890
Reputation: 4153
mv
is a Unix command and I think you are using windows. You have 2 options:
Installing Git bash and in the bash use mv
command.
Using Windows move
command.
Upvotes: 42