Skip to content

Instantly share code, notes, and snippets.

@retrography
Last active August 29, 2015 14:16
Show Gist options
  • Save retrography/d6a41a291a84b1e00f35 to your computer and use it in GitHub Desktop.
Save retrography/d6a41a291a84b1e00f35 to your computer and use it in GitHub Desktop.
brm: Brutally deletes everything under the current directory, even if the directory contains way too many files and folders with strange names containing special characters, etc...
#!/bin/bash
find . -maxdepth 1 ! -path . -exec rm -rf {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment