Skip to main content

empty-trash-terminal

· One min read

/blog/empty-trash-terminal.md#

---slug: empty-trash-terminaltitle: Empty Your Trash Using the Terminalauthor: Frádely Dilonétags: [beginner, cleanup, terminal]---
Need to quickly clear out your Trash without opening the UI? Here's how to do it from the terminal.
---
### 🗑 On macOS
```bashrm -rf ~/.Trash/*

🗑 On Linux (Ubuntu, etc.)#

rm -rf ~/.local/share/Trash/*

⚠️ Be careful#

These commands delete everything inside your Trash immediately. No "Are you sure?" message. Use with intention.

✅ Good for freeing up space or automating cleanup scripts.


Let me know if you want a matching “clear Downloads folder” post.