From owner-freebsd-questions@FreeBSD.ORG Thu Feb 1 21:11:36 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2637D16A400 for ; Thu, 1 Feb 2007 21:11:36 +0000 (UTC) (envelope-from josh.carroll@gmail.com) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.190]) by mx1.freebsd.org (Postfix) with ESMTP id B502113C48D for ; Thu, 1 Feb 2007 21:11:34 +0000 (UTC) (envelope-from josh.carroll@gmail.com) Received: by nf-out-0910.google.com with SMTP id m19so1017694nfc for ; Thu, 01 Feb 2007 13:11:33 -0800 (PST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:reply-to:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=O8kXUPhfPcFsf8cZb5KlvoLsy1whdWxzLA/XpJeXrkOiz45Kp/xrIpS9hCUV/FDgeMKSRN7DJLh+qvBWeMSqD4Zttx0V9OBtKTXUn2Oi0KuKVrnAPi3dZ/yjixz4glNWbvd2DEgMQf4E/2LwQxVBoMvVWJtOzhu1pDkL2eFJcys= Received: by 10.82.135.13 with SMTP id i13mr856463bud.1170364293318; Thu, 01 Feb 2007 13:11:33 -0800 (PST) Received: by 10.82.163.14 with HTTP; Thu, 1 Feb 2007 13:11:33 -0800 (PST) Message-ID: <8cb6106e0702011311w6e15e117w127b4e9576dbca02@mail.gmail.com> Date: Thu, 1 Feb 2007 13:11:33 -0800 From: "Josh Carroll" To: "astalus razvan" In-Reply-To: <22ce4d6f0702011235j410505c3gf7a145b7376399f0@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <22ce4d6f0702011235j410505c3gf7a145b7376399f0@mail.gmail.com> Cc: freebsd-questions@freebsd.org Subject: Re: (no subject) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: josh.carroll@psualum.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 01 Feb 2007 21:11:36 -0000 > 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