Move to Trash Keyboard Shortcut Mac: Cmd+Delete Guide
Master the move to trash keyboard shortcut mac (Cmd+Delete) in Finder, plus Terminal tips and recovery steps. Shortcuts Lib explains safe deletion and item recovery.

The standard macOS shortcut to move to Trash is Command + Delete when you have an item selected in Finder. This moves the item to Trash instead of permanently deleting. Some apps may use Command + Backspace as an alternative; check the app’s shortcuts.
Move to Trash in Finder: Core concept
On macOS, the standard action to remove a file to trash is performed via Finder. The canonical keyboard shortcut to move the selected item to Trash is Cmd+Delete. This action places the item in the Trash, preserving the original location so you can recover it later if needed. This safety-first deletion flow aligns with macOS design and helps prevent accidental data loss. According to Shortcuts Lib, mastering this shortcut reduces mouse usage and speeds up everyday file-management tasks. The concept also includes scriptable routes via AppleScript or Terminal for power users who want to automate the flow.
-- AppleScript: Move a file to Trash in Finder
set thePath to POSIX path of "/Users/you/Desktop/sample.txt"
tell application "Finder" to move POSIX file thePath to trash# Move to Trash from Terminal using a CLI tool (if installed)
trash "$HOME/Desktop/sample.txt" # requires 'trash' CLI (e.g., via Homebrew)# Quick AppleScript call from shell to move a file to Trash
osascript -e 'tell application "Finder" to move POSIX file "/Users/you/Desktop/sample.txt" to trash'This block demonstrates three common paths: the GUI shortcut, a Terminal-based option via a dedicated CLI, and an AppleScript-driven approach. Each route ultimately moves the item to Trash, enabling easy recovery before emptying. The takeaway is that Cmd+Delete is the canonical move-to-trash shortcut on Mac, while terminal users can leverage scripting or third-party tools as needed.
This section contains multiple code examples to illustrate the practical paths a user can take.
Steps
Estimated time: 5-15 minutes
- 1
Select the item
In Finder, click the file or folder you want to remove so it’s highlighted. You can select multiple items with Shift-click or Cmd-click.
Tip: Tip: Use the trackpad three-finger drag to quickly select a batch of items before deleting. - 2
Move to Trash with keyboard
Press Cmd+Delete to move the selected item(s) to Trash. The action places files into the Trash rather than permanently deleting them.
Tip: Pro tip: If you accidentally press Delete, don’t panic—items stay recoverable until Trash is emptied. - 3
Optional: Empty Trash to clean up
If you’re sure you want to permanently remove items, empty the Trash using Cmd+Shift+Delete. macOS will remove items permanently after confirmation.
Tip: Pro tip: Review Trash contents first; use the Finder’s View > Show View Options to sort by date and size before emptying. - 4
Consider automation (optional)
For repetitive moves to Trash, create a small AppleScript or Automator workflow to automate deletion tasks. This can be invoked from a script or a quick action.
Tip: Pro tip: Use a carefully named function like trashMove(path) to minimize mistakes.
Prerequisites
Required
- macOS 11.0+ with FinderRequired
- Basic keyboard familiarity (Cmd, Delete, etc.)Required
Optional
- Optional
- Optional: AppleScript/Script Editor or Terminal accessOptional
Keyboard Shortcuts
| Action | Shortcut |
|---|---|
| Move selected item to Trash in FinderWindows users map this to Move to Recycle Bin; macOS uses Trash | ⌦ |
| Empty the TrashMac empties Trash with Cmd+Shift+Delete; Windows uses a different flow for Recycle Bin | Ctrl+⇧+⌦ |
Questions & Answers
What is the move to trash keyboard shortcut mac?
The standard shortcut is Cmd+Delete in Finder. This sends the selected item to Trash, where it can be recovered until Trash is emptied. Some apps may use Cmd+Backspace as an alternative; always verify per-app shortcuts.
Use Cmd plus Delete in Finder to move files to Trash. Some apps use Cmd plus Backspace; check per-app shortcuts.
Can I move to Trash from Terminal?
Yes. If you install a trash CLI, you can move files to Trash from the terminal. Alternatively, you can use AppleScript via osascript to command Finder to trash a path.
Yes. You can move to Trash via Terminal by using a trash tool or an AppleScript command that tells Finder to trash the file.
How do I permanently delete items?
To permanently delete, empty the Trash with Cmd+Shift+Delete. Items can’t be recovered once the Trash is emptied, so ensure you don’t need them before executing the command.
Empty the Trash with Cmd+Shift+Delete to permanently remove items.
What if I delete something by mistake?
Open Trash in Finder and drag the item back to its original location, or use the Restore option if available. Items remain in Trash until you empty it.
Open Trash, drag the item back, or use Restore if available.
Can I customize the shortcut to move to Trash?
Yes. macOS supports App Shortcuts in System Settings. You can assign Finder actions to new key combinations, but be mindful of other app conflicts.
Yes, you can customize using System Settings > Keyboard > Shortcuts.
Is there a Windows-equivalent for Mac’s Trash shortcut?
Windows uses Delete to move items to Recycle Bin; Cmd+Delete on Mac translates to that effect. The terminology differs: Trash vs. Recycle Bin, but the behavior is analogous.
Windows uses Delete to move to Recycle Bin; Cmd+Delete on Mac maps to the Trash action.
Main Points
- Move to Trash with Cmd+Delete in Finder
- Terminal and AppleScript offer alternative trash moves
- Empty Trash with Cmd+Shift+Delete to permanently remove