In bash or csh I want to start nmap scanning at every 1 hour.how can I do this?
                                    thanks

Use cron (man cron, man 5 crontab). Something like:

0 * * * * /usr/local/bin/nmap ....

Would run it on the hour, each hour. Read the man pages for more details.

Josh
_______________________________________________
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"

Reply via email to