Forrest logo
back to context overview

del

List of commands for del:

  • del:ai:a09aa How can I crash Windows?
    $ del /F /S /Q C:\WINDOWS
    try on your machine
    explain this command
  • del:tldr:1228c del: Recursively delete file(s) from all subdirectories.
    $ del ${file_pattern} /s
    try on your machine
    explain this command
  • del:tldr:13a62 del: Prompt for confirmation before deleting each file.
    $ del ${file_pattern} /p
    try on your machine
    explain this command
  • del:tldr:25be3 del: Delete one or more space-separated files or patterns.
    $ del ${file_pattern}
    try on your machine
    explain this command
  • del:tldr:28441 del: Do not prompt when deleting files based on a global wildcard.
    $ del ${file_pattern} /q
    try on your machine
    explain this command
  • del:tldr:600c8 del: Display the help and list available attributes.
    $ del /?
    try on your machine
    explain this command
  • del:tldr:65b44 del: Delete files based on specified attributes.
    $ del ${file_pattern} /a ${attribute}
    try on your machine
    explain this command
  • del:tldr:ddb24 del: Force the deletion of read-only files.
    $ del ${file_pattern} /f
    try on your machine
    explain this command
back to context overview