Skip to main content
added 82 characters in body
Source Link
Gilles Quénot
  • 36.2k
  • 7
  • 74
  • 94

Simply remove the ; character, so in final :

 for i in *; do something.py $i & done

And for running N instance of your script at the same time, see man 1 parallel

See http://www.gnu.org/software/parallel/

Simply remove the ; character, so in final :

 for i in *; do something.py $i & done

Simply remove the ; character, so in final :

 for i in *; do something.py $i & done

And for running N instance of your script at the same time, see man 1 parallel

See http://www.gnu.org/software/parallel/

added 224 characters in body
Source Link
Gilles Quénot
  • 36.2k
  • 7
  • 74
  • 94

Simply remove the ; character, so in final :

 for i in *; do something.py $i & done
  

Simply remove the ; character, so in final :

 for i in *; do something.py $i & done
 

Simply remove the ; character, so in final :

 for i in *; do something.py $i & done
 
Source Link
Gilles Quénot
  • 36.2k
  • 7
  • 74
  • 94

Simply remove the ; character, so in final :

 for i in *; do something.py $i & done