资 源 简 介
Extremely simple parallel batch scheduler that takes advantage of the number of processors.
By Daniel Gutson.
just call
```
parasched cmd1
parasched cmd2
...
parasched cmd_n
paralaunch
```
and Paragooas will keep all your processors busy :)
For example:
for cpp in *.cpp; do parasched g++ -c $cpp;doneparalaunchg++ *.o -o myprogram
Check BasicUsage for further info.