1

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.

2 Answers 2

1

If you make sh the command, then your apps can be the option:

parallel sh -- `find . -name app -type f` 
Sign up to request clarification or add additional context in comments.

Comments

0

The command is correct and ought to work. Maybe you are hit by this: GNU parallel not working at all

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.