260528
Backlinks (0)
No backlinks found.
No backlinks found.
Try removing something but don't freak out if you cannot.
Suppress with -f or --force.
rm -fBut ZSH will still freak out if you do something like rm -f *.config.js.
This is because of the error message coming from the ZSH Glob search, not the rm part itself.
setopt +o nomatchThis will prevent ZSH from complaining when no match is found.
{ "clear": "rm -f *.config.js",}But still, this time, Yarn will complain when you run the rm command
You need to explicitly quote it to avoid glob expansion.
This is because Yarn will try to expand the blob instead of delegating it to the terminal (which we want.)
{ "clear": "rm -f '*.config.js'",}rm -fsetopt +o nomatch{ "clear": "rm -f *.config.js",}{ "clear": "rm -f '*.config.js'",}