Setup
Backlinks (0)
No backlinks found.
No backlinks found.
OpenClaw, Hermes, Poke를 쓰며 느낀 단점들
내가 만약 워크스페이스 에이전트를 만든다면 어떻게 만들까?
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'",}