Copying Nested Files
Updated
•1 min readA one-liner for copying nested files with a specific extension to a new location:
find tmp/AudioBooks -type f -name "*.m4b" -exec cp {} ~/AudioBooks ;
Search for a command to run...
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 ;
No comments yet. Be the first to comment.