I was trying to execute several commands on a single record found by the GNU/Linux find command. The first attempt was to create something like:
find . -name "*.pdf" -exec echo 'test' && echo 'test2' \;
But it’s not the way the find command works.
I was trying to execute several commands on a single record found by the GNU/Linux find command. The first attempt was to create something like:
find . -name "*.pdf" -exec echo 'test' && echo 'test2' \;
But it’s not the way the find command works.