From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 13521 invoked by alias); 7 Oct 2011 16:52:15 -0000 Mailing-List: contact zsh-users-help@zsh.org; run by ezmlm Precedence: bulk X-No-Archive: yes List-Id: Zsh Users List List-Post: List-Help: X-Seq: 16470 Received: (qmail 17647 invoked from network); 7 Oct 2011 16:52:14 -0000 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_NONE autolearn=ham version=3.3.1 Received-SPF: none (ns1.primenet.com.au: domain at closedmail.com does not designate permitted sender hosts) From: Bart Schaefer Message-id: <111007095138.ZM9989@torch.brasslantern.com> Date: Fri, 07 Oct 2011 09:51:38 -0700 In-reply-to: Comments: In reply to Renato Botelho "Re: tcsh set time equivalent" (Oct 7, 1:01pm) References: X-Mailer: OpenZMail Classic (0.9.2 24April2005) To: zsh-users@zsh.org Subject: Re: tcsh set time equivalent MIME-version: 1.0 Content-type: text/plain; charset=us-ascii On Oct 7, 1:01pm, Renato Botelho wrote: } } I set REPORTTIME=2, and ran a `find /usr -type l -name '*xxxx*'`, it took } about 20 seconds do execute and at the end, it didn't show anything. torch% REPORTTIME=2 torch% (repeat 1000000; do print -n; done) ( repeat 1000000; do; print -n; done; ) 2.60s user 1.15s system 100% cpu 3.751 total torch% TIMEFMT="\ Time spent in user mode (CPU seconds) : %Us Time spent in kernel mode (CPU seconds) : %Ss Total time : %Es CPU utilisation (percentage) : %P Times the process was swapped : %W Times of major page faults : %F Times of minor page faults : %R" torch% (repeat 1000000; do print -n; done) Time spent in user mode (CPU seconds) : 2.54ss Time spent in kernel mode (CPU seconds) : 1.21ss Total time : 3.75ss CPU utilisation (percentage) : 99% Times the process was swapped : 0 Times of major page faults : 0 Times of minor page faults : 110 torch% -- Barton E. Schaefer