Skip to main content

Command Palette

Search for a command to run...

Copying Nested Files

Updated
1 min read

A one-liner for copying nested files with a specific extension to a new location:

find tmp/AudioBooks -type f -name "*.m4b" -exec cp {} ~/AudioBooks ;