From owner-cvs-all@FreeBSD.ORG Fri Oct 28 18:37:10 2005 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 3B97016A41F; Fri, 28 Oct 2005 18:37:10 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EBF6643D46; Fri, 28 Oct 2005 18:37:09 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j9SIb9WN042591; Fri, 28 Oct 2005 18:37:09 GMT (envelope-from stefanf@repoman.freebsd.org) Received: (from stefanf@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j9SIb97b042590; Fri, 28 Oct 2005 18:37:09 GMT (envelope-from stefanf) Message-Id: <200510281837.j9SIb97b042590@repoman.freebsd.org> From: Stefan Farfeleder Date: Fri, 28 Oct 2005 18:37:09 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/bin/sh eval.c exec.c exec.h 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, 28 Oct 2005 18:37:10 -0000 stefanf 2005-10-28 18:37:09 UTC FreeBSD src repository Modified files: bin/sh eval.c exec.c exec.h Log: Add the POSIX options -v and -V to the 'command' builtin. Both describe the type of their argument, if it is a shell function, an alias, a builtin, etc. -V is more verbose than -v. PR: 77259, 84539 Revision Changes Path 1.47 +13 -1 src/bin/sh/eval.c 1.27 +47 -12 src/bin/sh/exec.c 1.13 +7 -0 src/bin/sh/exec.h