Using find to run a command on multiple files
# create backups of all markdown files
find . -type f -name '*.md' -exec cp {} {}.bak \;A word of caution
Last updated
# create backups of all markdown files
find . -type f -name '*.md' -exec cp {} {}.bak \;Last updated