Dropping filename extensions with find -exec

command lineexecfilenamesfindio

When using find, how can I drop the original filename extension (i.e. .pdf) from the second pair of -exec braces ({})?


For example:

find ~/Documents -regex 'LOGIC.*\.pdf' -exec pdf2svg {} {}.svg \;

Input filename:

~/Documents/LOGIC-P_OR_Q.pdf

Output filename:

~/Documents/LOGIC-P_OR_Q.pdf.svg

Desired filename:

~/Documents/LOGIC-P_OR_Q.svg

Best Answer

You can use an "in-line" shell script, and parameter expansion:

-exec sh -c 'pdf2svg "$1" "${1%.pdf}.svg"' sh {} \;

or (more efficiently, if your find supports it)

-exec sh -c 'for f; do pdf2svg "$f" "${f%.pdf}.svg"; done' sh {} +
Related Question