From owner-freebsd-bugs@FreeBSD.ORG Sat Apr 17 10:40:18 2004 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3F9C316A4CE for ; Sat, 17 Apr 2004 10:40:18 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 37A8343D41 for ; Sat, 17 Apr 2004 10:40:18 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i3HHeIbv002122 for ; Sat, 17 Apr 2004 10:40:18 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.10/8.12.10/Submit) id i3HHeIJU002121; Sat, 17 Apr 2004 10:40:18 -0700 (PDT) (envelope-from gnats) Date: Sat, 17 Apr 2004 10:40:18 -0700 (PDT) Message-Id: <200404171740.i3HHeIJU002121@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Garrett Wollman Subject: bin/65649: Add `-u name' option to env(1) X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Garrett Wollman List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Apr 2004 17:40:18 -0000 The following reply was made to PR bin/65649; it has been noted by GNATS. From: Garrett Wollman To: Jos Backus Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: bin/65649: Add `-u name' option to env(1) Date: Sat, 17 Apr 2004 13:36:19 -0400 (EDT) < said: > This patch adds the `-u name' option to env(1). For a rationale of why > this is useful (besides compatibility with GNU coreutils), see this > post: I can see the compatibility argument, but I think the utility is a bit of a stretch. Anything that `env -u FOO COMMAND' can do, you can do with: (unset FOO; COMMAND) -GAWollman