Reputation: 3860
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
Reputation: 72054
It is a way to pronounce the command rm -rf
(remove, recursive, force removal).
Upvotes: 68
Reputation: 4256
isaacs: It's how I pronounce
rm -rf
from https://github.com/isaacs/rimraf/issues/175
Upvotes: 16
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
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
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