安装包含本地参考和全部已发布模式的完整包。
install deldel删除文件、链接和目录;递归删除必须显式指定参数,受保护路径会被阻止。
删除最安全的流程是三步:先检查目标,只删除计划中的内容,再次查看父目录确认结果。
del <path>... [-r|-a] [-f]del <file>删除文件(或符号链接)
del <dir>删除空目录
del <path>...删除多个文件和/或空目录
del <dir> -r | del <dir> -a递归删除目录
del <path>... -f删除指定路径;目标已不存在时不视为错误
-f 会跳过已经不存在的目标,适合脚本和重复维护。
删除开始前会先验证所有目标。受保护的根目录、基准目录、当前工作目录以及受保护的父路径不能删除。非空目录必须使用 -r 或 -a。成功后
可直接在页面中运行预先准备的示例。结果已预先生成并在浏览器中显示;服务器不会执行任何终端命令。
安装当前兼容版本。完整功能请选择 Base,精简包请选择 Minimum;已安装模块的更新请使用 upgrade。
Base 与 Minimum 是同一当前模块版本的两个包。
安装包含本地参考和全部已发布模式的完整包。
install del安装精简包。该包不包含本地参考;
install del -m安装这个确切的已发布版本。
install del -v 1.2.1让 upgrade 检查兼容性,仅在需要时替换已安装块。
upgrade del删除扩展块,不影响核心和其他模块。
install del -u示例可复制,但网站不会执行。请先检查路径、权限和破坏性选项。
cd \sandbox\tmp | @mf cleanup.tmp | del cleanup.tmpcleanup.tmp
+del sandbox/tmp/first.txt sandbox/tmp/folder/second.txttmp/
(mixed file paths removed; the directory itself remains)del sandbox/tmp/first.txt sandbox/tmp/folder -rtmp/
(file and directory targets removed in one recursive operation)del sandbox/tmp/missing.txt -f+
(missing target does not turn repeatable cleanup into an error)del . -r不能删除受保护路径sandbox/tmp/README.txt该示例使用受保护的 /sandbox/ 文档工作区中的文件或目录。
lil-terminal sandbox temporary workspace
Commands in the public documentation use this directory for disposable copies,
archives, uploads and files created during examples. Review destructive commands
before running them and restore the sandbox from the release package when needed.