I would like to execute some binary files that have the same names and placed in different directories like this:
binary/1/app binary/2/app binary/3/app I want to execute app files at the same time. I have created a bash file in a binary directory and written this command but nothing happened:
find . -name app -type f | parallel -j 4 Thanks.