From owner-cvs-src-old@FreeBSD.ORG Sun Apr 25 17:52:43 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BC122106564A for ; Sun, 25 Apr 2010 17:52:43 +0000 (UTC) (envelope-from jilles@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id AAB278FC0C for ; Sun, 25 Apr 2010 17:52:43 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id o3PHqhkU056191 for ; Sun, 25 Apr 2010 17:52:43 GMT (envelope-from jilles@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id o3PHqh7D056190 for cvs-src-old@freebsd.org; Sun, 25 Apr 2010 17:52:43 GMT (envelope-from jilles@repoman.freebsd.org) Message-Id: <201004251752.o3PHqh7D056190@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to jilles@repoman.freebsd.org using -f From: Jilles Tjoelker Date: Sun, 25 Apr 2010 17:38:53 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man1 builtin.1 src/usr.bin/alias Makefile X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 Apr 2010 17:52:43 -0000 jilles 2010-04-25 17:38:53 UTC FreeBSD src repository Modified files: share/man/man1 builtin.1 usr.bin/alias Makefile Log: SVN rev 207196 on 2010-04-25 17:38:53Z by jilles Make hash, type and ulimit available via execve(). These are specified by POSIX but are not special builtins, and therefore need to be available via execve() and utilities like time, nohup, xargs. (Note that hash was moved from the XSI option to the base in the 2008 standard.) Like most of the POSIX "regular builtin commands", these need to be executed in a shell environment for full functionality, although they may still be of some use outside one. Unlike the POSIX special and regular builtin commands, POSIX does not require these to be found before a PATH search, although that could be an oversight. Like some of the utilities already provided by usr.bin/alias, these may lead to confusing results when invoked from csh(1). Revision Changes Path 1.31 +3 -3 src/share/man/man1/builtin.1 1.5 +3 -0 src/usr.bin/alias/Makefile