From owner-cvs-all Tue Jul 28 17:48:40 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA27322 for cvs-all-outgoing; Tue, 28 Jul 1998 17:48:40 -0700 (PDT) (envelope-from owner-cvs-all) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA27111; Tue, 28 Jul 1998 17:47:39 -0700 (PDT) (envelope-from hoek@FreeBSD.org) From: Tim Vanderhoek Received: (from hoek@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA21148; Tue, 28 Jul 1998 17:46:17 -0700 (PDT) Date: Tue, 28 Jul 1998 17:46:17 -0700 (PDT) Message-Id: <199807290046.RAA21148@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/bin/ls ls.1 ls.c ls.h print.c Sender: owner-cvs-all@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk hoek 1998/07/28 17:46:15 PDT Modified files: bin/ls ls.1 ls.c ls.h print.c Log: Allow env. variable LS_COLWIDTHS to specify minimum column widths, effectively overriding the dynamically-sized-column feature. This is mostly useful for non-interactive use, where it may be necessary to ensure that listings taken at different times have columns that line-up correctly. I have been assured that at least one large, well-known program will soon be taking advantage of this. :-) PR: bin/7011 Submitted by: Joel Ray Holveck Revision Changes Path 1.24 +9 -1 src/bin/ls/ls.1 1.22 +75 -5 src/bin/ls/ls.c 1.10 +2 -1 src/bin/ls/ls.h 1.17 +11 -6 src/bin/ls/print.c