Mac 'terminal error - bash: ./ js: Permission denied'

I am learning JavascriptMVC and I am running the following command in Terminal that I received from here :

./js jquery/generate/app cookbook 

I am new to the command line. All my Googling doesn't come up with anything. I assume that I am missing some kind of configuration or something like that?

+4
source share
1 answer

This error probably means that "js" is not executable. If it is in the current directory, you can make it executable with chmod +x js .

+7
source

Source: https://habr.com/ru/post/1346483/


All Articles