• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Linux command to run command MULTIPLE TIMES

randalee

Senior member
I have a little bash script that will run NSLOOKUPS on a DNS server I have. What I would like to do is be able to run this script OVER and OVER and OVER as fast as possible.

Just trying to beat up my DNS server a bit. I know there is a way to do this, but anyone know?

I'm currently doing ./check and then waiting for it to finish, then doing ./check again (check is my script)...
 
ummm
why dont you have the script call itself from within itself, but as a background job?

!/bin/bash
NSlookup
./script.sh&
 
Back
Top