node.js 有谁知道“rimraf”是什么意思?

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/45276163/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-09-02 18:23:00  来源:igfitidea点击:

Does anyone knows what "rimraf" means?

node.jssemantics

提问by Joseph Merdrignac

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.

删除文件时的递归选项确定,但什么是“rimraf”?是首字母缩略词吗?它来自单词组合吗?这个词相当好听,我想知道它是从哪里来的。

回答by Arun Ravindranath

Rimraf

轮辋

The UNIX command rm -rf for Node.js

用于Node.js的 UNIX 命令 rm -rf

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

Node.js 的深度删除(如rm -rf)模块,提供文件和目录的异步深度删除。

The rimrafexecutable is a faster alternative to the rm -rfshell command.

rimraf可执行文件是到一个更快的替代rm -rf外壳命令。

Source :

来源 :

回答by Sebastian Redl

This is just a guess, but I would say that it is a way to pronounce the command rm -rf(remove, recursive, force removal).

这只是一个猜测,但我会说这是一种发音命令的方式rm -rf(移除、递归、强制移除)。

回答by ajay

rimrafis an executable that is used to clean the installed node packages in a node based project. It basically executes the rm -rfcommand on the node_modulesdirectory, but is a faster alternative.

rimraf是一个可执行文件,用于清理基于节点的项目中已安装的节点包。它基本上是rm -rfnode_modules目录上执行命令,但它是一种更快的替代方法。

回答by Santosh Mahto

may be alternative of sudo rm -rf

可能是 sudo rm - rf 的替代品