260409
260409

260409

  • AutoBuilder

Cursor is incredibly good harness.

Opus is also not Oputhetic anymore

Backlinks (0)

No backlinks found.

260415
260415

260415

  • Debian Setup
  • AutoBuilder
Backlinks (0)

No backlinks found.

Try Removing
Try Removing

Try Removing

Try removing something but don't freak out if you cannot.

Terminal freaked out

Suppress with -f or --force.

rm -f

Then ZSH freak out

But 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 nomatch

This will prevent ZSH from complaining when no match is found.

  • zsh - How to get rid of "No match found" when running "rm *" - Unix & Linux Stack Exchange

Then finally Yarn will freak out

js
{    "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.)

js
{    "clear": "rm -f '*.config.js'",}
  • [Bug] Yarn shell throws errors about Glob patterns · Issue #1731 · yarnpkg/berry
Backlinks (1)
  • 221004
Index
cho.sh
I prefer CLIBB9A08260619260619컴퓨트로늄37A88F컴퓨트로늄0CF03F컴퓨트로늄2C60FB260618260618260418260418260528260528AutoBuilder63849A260419260419Setup9AC296StellaD226F7260415260415Debian SetupD2F701260414260414anaclumos/configs/AGENTS.mdED86A3Ramp의 AX (회사를 AI로 물들이는 법)840774260413260413How to get your company AI pilled46544C260411260411260409260409260407260407260406260406Separating Claude Code Personal Sub and Claude Code Company Sub33A53C
Warning
This post is more than a year old. Information may be outdated.
rm -f
setopt +o nomatch
{    "clear": "rm -f *.config.js",}
{    "clear": "rm -f '*.config.js'",}