Steven's Blog

A Dream Land of Peace!

ZSH下使用rake New_post报错

When I issue the command “rake new_post[]” using the zsh, I got the error telling me that “no matches found”. I googled, it said if using “noglob rake” rather than simply “rake”, this problem will be solved. But in my case, it does not work.

My expedient solution here is, issuing the followng command:

1
rake "new_post[on the error using rake new_post under zsh]"

rather than in the normal way:

1
rake new_post["on the error using rake new_post under zsh"]

It works in my case, but it is not a nice solution for sure.