Install the complete package with local command reference and every published mode.
install deldelRemove files, links and directories; recursive deletion requires an explicit flag and protected paths are blocked.
Deletion is safest as a three-step workflow: inspect the target, remove exactly what you intend, then inspect the parent directory again.
del <path>... [-r|-a] [-f]del <file>delete a file (or symbolic link)
del <dir>delete an empty directory
del <path>...delete multiple files and/or empty directories
del <dir> -r | del <dir> -adelete a directory recursively
del <path>... -fdelete the listed paths without failing when some are already absent
-f is useful in scripts and repeated maintenance. Without it, an already missing target stops the command with Path not found. With -f, missing targets are skipped while existing targets are still processed. A command such as
All targets are validated before deletion starts. The filesystem root, current directory, configured base and protected parent paths cannot be deleted. Non-empty directories require -r or -a. After successful deletion
Run the prepared examples directly on the page. Their results are prebuilt and shown in the browser; no terminal command is executed on the server.
Install the current compatible version. Choose Base for the complete feature set or Minimum for the reduced package; use upgrade to update a module that is already installed.
Base and Minimum are two packages of the same current module release, not separate command versions.
Install the complete package with local command reference and every published mode.
install delInstall the reduced package. Local reference is omitted;
install del -mInstall exactly this published version.
install del -v 1.2.1Ask upgrade to check compatibility and replace the installed block only when needed.
upgrade delRemove the extension block while leaving the core and unrelated modules intact.
install del -uExamples are copyable command lines, not actions executed by this website. Review paths, permissions and destructive flags before running them on a real project.
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 . -rProtected path cannot be deletedsandbox/tmp/README.txtThe example uses a file or directory from the protected /sandbox/ documentation workspace.
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.
Clarifies mixed targets and -f for repeatable cleanup; successful deletion now returns a compact flat directory view.