Joseph Merdrignac
Joseph Merdrignac

Reputation: 3860

Does anyone knows what "rimraf" means?

Ok for the recursive options when deleting files, but what is rimraf? Is it an acronym? Does it come from words combination?

The word is fairly pleasant, I would like to know where does it come from.

Upvotes: 212

Views: 136989

Answers (5)

Sebastian Redl
Sebastian Redl

Reputation: 72054

It is a way to pronounce the command rm -rf (remove, recursive, force removal).

Upvotes: 68

atian25
atian25

Reputation: 4256

isaacs: It's how I pronounce rm -rf

from https://github.com/isaacs/rimraf/issues/175

Upvotes: 16

Arun Ravindranath
Arun Ravindranath

Reputation: 2261

Rimraf

The UNIX command rm -rf for Node.js

Deep deletion (like rm -rf) module for Node.js that provides asynchronous deep- deletion of files and directories.

The rimraf executable is a faster alternative to the rm -rf shell command.

(rm stands for remove, rf stands for recursive force.)

Source :

Upvotes: 197

notnoahkirby
notnoahkirby

Reputation: 349

Like others have said, it's based on rm -rf. However, I think pronunciation sounds like it may come from the term riffraff, or perhaps even the rapper Riff Raff (just kidding).

And I say this as a possible explanation for the added "i" and "a" in "rimraf" since that coincides with the word riffraff.

Upvotes: 3

ajay
ajay

Reputation: 335

rimraf is an executable that is used to clean the installed node packages in a node based project. It basically executes the rm -rf command on the node_modules directory, but is a faster alternative.

Upvotes: 31

Related Questions