Command line and power tools
Automator predates Shortcuts and still wins for file-heavy, Finder-integrated tasks.
For file work triggered from Finder — right-click a selection and run something — Automator's Quick Actions remain the smoothest route. It also owns Folder Actions, which Shortcuts cannot do.
Now: select images in Finder → right-click → Quick Actions → Resize to 1600.
Merging PDFs without opening an app or uploading to a website.
for f in "$@"; do
case "$f" in
*.pdf) mv "$f" ~/Documents/PDFs/ ;;
*.jpg|*.png) mv "$f" ~/Pictures/Inbox/ ;;
esac
done
The one Shortcuts cannot replicate — attach a workflow to a folder so it runs on arrival. The folder-actions article covers the pattern; combined with the recipes above, a Downloads folder can sort and resize its own contents.
Shortcuts is friendlier and cross-platform with iOS; Automator is better at Finder integration and is the only route to Folder Actions. Both embed shell scripts, so neither hits a hard wall. For file tasks specifically, Automator's Finder-native feel still earns its place.
Yes — a Quick Action with Rename Finder Items, run from the right-click menu on any Finder selection.
Automator for Finder-integrated and folder-watching work; Shortcuts for friendlier, cross-device automation. Both run shell scripts.
Everywhere keeps track of every file on your Mac — including the folders Spotlight hides and drives you have unplugged. Free for a day, then $19 once.
Download for Mac