From owner-cvs-all@FreeBSD.ORG Fri Aug 18 14:33:16 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 40B9E16A4DD; Fri, 18 Aug 2006 14:33:16 +0000 (UTC) (envelope-from yar@comp.chem.msu.su) Received: from comp.chem.msu.su (comp.chem.msu.su [158.250.32.97]) by mx1.FreeBSD.org (Postfix) with ESMTP id 75E3F43D4C; Fri, 18 Aug 2006 14:33:15 +0000 (GMT) (envelope-from yar@comp.chem.msu.su) Received: from comp.chem.msu.su (localhost [127.0.0.1]) by comp.chem.msu.su (8.13.4/8.13.3) with ESMTP id k7IEXBU5014337; Fri, 18 Aug 2006 18:33:11 +0400 (MSD) (envelope-from yar@comp.chem.msu.su) Received: (from yar@localhost) by comp.chem.msu.su (8.13.4/8.13.3/Submit) id k7IEXBPW014336; Fri, 18 Aug 2006 18:33:11 +0400 (MSD) (envelope-from yar) Date: Fri, 18 Aug 2006 18:33:11 +0400 From: Yar Tikhiy To: Dag-Erling Sm?rgrav Message-ID: <20060818143310.GA14203@comp.chem.msu.su> References: <200608181210.k7ICAIme084410@repoman.freebsd.org> <86ejvet9m6.fsf@xps.des.no> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <86ejvet9m6.fsf@xps.des.no> User-Agent: Mutt/1.5.9i Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc rc.subr X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 Aug 2006 14:33:16 -0000 On Fri, Aug 18, 2006 at 04:13:37PM +0200, Dag-Erling Sm?rgrav wrote: > Yar Tikhiy writes: > > Log: > > The ps(1) command is unfriendly to scripts by default because > > it limits the width of its output to the value of $COLUMNS, or > > what TIOCGWINSZ reports, or 79 columns. We should specify -ww > > to ps(1) so that it removes the limit and prints lines in full. > > Otherwise very long command pathnames could be mishandled, e.g., > > by _find_processes(). > > or perhaps _find_processes() should use pgrep(1) instead of ps(1). I considered that but had to stick to ps(1) because pgrep was in /usr/bin while ps was in /bin. The use of /usr/bin tools should be very limited in rc.subr(8). OTOH, pgrep uses /lib libs only, which makes it possible to transfer pgrep+pkill to /bin if we can stand the growth of / by some 50 kbytes. -- Yar