When I am trying to type init --env=Development --overwrite=n
in command line on Linux
I have an error bash: --env=Development: command not found
When I am trying to type init --env=Development --overwrite=n
in command line on Linux
I have an error bash: --env=Development: command not found
On linux, for security purposes, you have to refer to the current directory specifically.
You will have to use
./init --env=Development --overwrite=n
Also take a look here for a more extensive explanation.