I want to echo out the filename portion of a find on the linux commandline. I\'ve tried to use the following:
find www/*.html -type f -exec sh -c \"echo $(b
Thats how I batch resize files with imagick, rediving output filename from source
find . -name header.png -exec sh -c 'convert -geometry 600 {} $(dirname {})/$(basename {} ".png")_mail.png' \;