From owner-freebsd-current@FreeBSD.ORG Sun Jul 1 02:18:12 2007 Return-Path: X-Original-To: freebsd-current@freebsd.org Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7F73816A479 for ; Sun, 1 Jul 2007 02:18:12 +0000 (UTC) (envelope-from lists@jnielsen.net) Received: from ns1.jnielsen.net (ns1.jnielsen.net [69.55.238.237]) by mx1.freebsd.org (Postfix) with ESMTP id 63E9A13C44C for ; Sun, 1 Jul 2007 02:18:12 +0000 (UTC) (envelope-from lists@jnielsen.net) Received: from localhost (jn@ns1 [69.55.238.237]) (authenticated bits=0) by ns1.jnielsen.net (8.12.9p2/8.12.9) with ESMTP id l612I3pT042742; Sat, 30 Jun 2007 22:18:03 -0400 (EDT) (envelope-from lists@jnielsen.net) From: John Nielsen To: freebsd-current@freebsd.org Date: Sat, 30 Jun 2007 22:19:37 -0400 User-Agent: KMail/1.9.6 References: In-Reply-To: X-Face: #X5#Y*q>F:]zT!DegL3z5Xo'^MN[$8k\[4^3rN~wm=s=Uw(sW}R?3b^*f1Wu*.<=?utf-8?q?of=5F4NrS=0A=09P*M/9CpxDo!D6?=)IY1w<9B1jB; tBQf[RU-R<,I)e"$q7N7 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200706302219.38353.lists@jnielsen.net> X-Virus-Scanned: ClamAV version 0.88.4, clamav-milter version 0.88.4 on ns1.jnielsen.net X-Virus-Status: Clean Cc: Ivan Voras Subject: Re: tcsh "nice" problem? X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Jul 2007 02:18:12 -0000 On Saturday 30 June 2007, Ivan Voras wrote: > Can someone confirm if the "nice" built-in command in tcsh works with > "-n #" style arguments? > > On two separate -CURRENT machines I have this: > > nice -n 5 date > > nice: Badly formed number > > but, > > > /usr/bin/nice -n 5 date > > works. csh's nice just takes +X or -X arguments directly (without -n), e.g.: nice -20 ./some-important-script.sh or nice +20 ./background-process.sh This is documented in the [t]csh manpage (at about byte 141580 according to more on my machine). JN