Python Thread Runner
Create various threads to execute a process given a variable parameter to substitute from a file
Examples could be:
Run a command/script that receives an argument on various threads, like ping a list of servers or ssh to a list of servers to perform a command.
Example:
Having a list of servers in a file:
list:
google.com linux.com github.com
usage:
./thrunner.py -t 3 list "/bin/ping -c 3 %var%"