een parallele batch scheduler in shell

This commit is contained in:
Ward Wouts 2009-01-29 09:03:58 +00:00
parent ef13833b4e
commit c20c39f12d
4 changed files with 327 additions and 0 deletions

4
pbatch/nmap-tcp-1000-add Executable file
View file

@ -0,0 +1,4 @@
#!/bin/bash
for i in $(cat targets);do
./pb add nmap -PN -v -r -sS -sV --version-light --reason -O -T4 -oN nmap-sS.${i}.txt ${i}
done