<feed xmlns='http://www.w3.org/2005/Atom'>
<title>src/usr.bin/time, branch release/4.1.0</title>
<subtitle>FreeBSD source tree</subtitle>
<id>https://cgit-dev.freebsd.org/src/atom?h=release%2F4.1.0</id>
<link rel='self' href='https://cgit-dev.freebsd.org/src/atom?h=release%2F4.1.0'/>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/'/>
<updated>1999-09-14T11:46:04Z</updated>
<entry>
<title>Correct some hard sentence breaks. Only those surrounding the previous</title>
<updated>1999-09-14T11:46:04Z</updated>
<author>
<name>Sheldon Hearn</name>
<email>sheldonh@FreeBSD.org</email>
</author>
<published>1999-09-14T11:46:04Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=e6d3cf26485c2f3410273cda3d6e4c1b0d78e2a4'/>
<id>urn:sha1:e6d3cf26485c2f3410273cda3d6e4c1b0d78e2a4</id>
<content type='text'>
commit and those which cause ugly nroff output have been fixed, since
the purpose of the style guideline which they contravene is to reduce
the sizes of deltas.

Reported by:	bde
</content>
</entry>
<entry>
<title>Improve shell documentation:</title>
<updated>1999-09-08T15:40:46Z</updated>
<author>
<name>Sheldon Hearn</name>
<email>sheldonh@FreeBSD.org</email>
</author>
<published>1999-09-08T15:40:46Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=c644db6aa2307baa08e3b3e7143b20cf12d7aaa1'/>
<id>urn:sha1:c644db6aa2307baa08e3b3e7143b20cf12d7aaa1</id>
<content type='text'>
* Consistently misspell built-in as builtin.

* Add a builtin(1) manpage and create builtin(1) MLINKS for all shell
  builtin commands for which no standalone utility exists.  These MLINKS
  replace those that were created for csh(1).

* Add appropriate xrefs for builtin(1) to the csh(1) and sh(1) manpages,
  as well as to the manpages of standalone utilities which are supported
  as shell builtin commands in at least one of the shells. In such
  manpages, explain that similar functionality may be provided as a
  shell builtin command.

* Improve sh(1)'s description of the cd builtin command. Csh(1) already
  describes it adequately. Replace the cd(1) manpage with a builtin(1)
  MLINKS link.

* Clean up some mdoc problems: use Xr instead of literal "foo(n)"; use
  Ic instead of Xr for shell builtin commands.

* Undo English contractions.

Reviewed by:	mpp, rgrimes
</content>
</entry>
<entry>
<title>$Id$ -&gt; $FreeBSD$</title>
<updated>1999-08-28T01:08:13Z</updated>
<author>
<name>Peter Wemm</name>
<email>peter@FreeBSD.org</email>
</author>
<published>1999-08-28T01:08:13Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=c3aac50f284c6cca5b4f2eb46aaa13812cb8b630'/>
<id>urn:sha1:c3aac50f284c6cca5b4f2eb46aaa13812cb8b630</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add $Id$, to make it simpler for members of the translation teams to</title>
<updated>1999-07-12T20:24:20Z</updated>
<author>
<name>Nik Clayton</name>
<email>nik@FreeBSD.org</email>
</author>
<published>1999-07-12T20:24:20Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=3be5f1f5ce6c92fb28926e7d02f855c12d534c34'/>
<id>urn:sha1:3be5f1f5ce6c92fb28926e7d02f855c12d534c34</id>
<content type='text'>
track.

The $Id$ line is normally at the bottom of the main comment block in the
man page, separated from the rest of the manpage by an empty comment,
like so;

     .\"    $Id$
     .\"

If the immediately preceding comment is a @(#) format ID marker than the
the $Id$ will line up underneath it with no intervening blank lines.
Otherwise, an additional blank line is inserted.

Approved by:            bde
</content>
</entry>
<entry>
<title>Adds the '-p' option to make time(1) output POSIX.2 compliant.</title>
<updated>1999-03-10T17:22:12Z</updated>
<author>
<name>Ollivier Robert</name>
<email>roberto@FreeBSD.org</email>
</author>
<published>1999-03-10T17:22:12Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=844338c28694b42aac758298ff0a587c6eda10d5'/>
<id>urn:sha1:844338c28694b42aac758298ff0a587c6eda10d5</id>
<content type='text'>
Updates the manpage as well.

I've rewritten the patch as it was for 2.2.7. It can probably be put
into 3.1-STABLE as well.

PR:		bin/10515
Submitted by:	Jens Schweikhardt &lt;schweikh@noc.dfn.de&gt;
</content>
</entry>
<entry>
<title>Calls one or more of malloc(), warn(), err(), syslog(), execlp() or</title>
<updated>1998-10-13T14:52:33Z</updated>
<author>
<name>Dag-Erling Smørgrav</name>
<email>des@FreeBSD.org</email>
</author>
<published>1998-10-13T14:52:33Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=1fd98d7d880e470809cc3284ef04a03bf3490b02'/>
<id>urn:sha1:1fd98d7d880e470809cc3284ef04a03bf3490b02</id>
<content type='text'>
execvp() in the child branch of a vfork(). Changed to use fork()
instead.

Some of these (mv, find, apply, xargs) might benefit greatly from
being rewritten to use vfork() properly.

PR:		Loosely related to bin/8252
Approved by:	jkh and bde
</content>
</entry>
<entry>
<title>When exiting on SIGINT, exit with signal status</title>
<updated>1998-08-24T10:17:20Z</updated>
<author>
<name>Martin Cracauer</name>
<email>cracauer@FreeBSD.org</email>
</author>
<published>1998-08-24T10:17:20Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=9a4902a99fd0225878dc081f5bc9599c84faad0d'/>
<id>urn:sha1:9a4902a99fd0225878dc081f5bc9599c84faad0d</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Brucifixion.</title>
<updated>1998-07-28T10:08:16Z</updated>
<author>
<name>Dag-Erling Smørgrav</name>
<email>des@FreeBSD.org</email>
</author>
<published>1998-07-28T10:08:16Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=9b81ca853e25afc6f99afa7e213935cfe181f34a'/>
<id>urn:sha1:9b81ca853e25afc6f99afa7e213935cfe181f34a</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Behave like GNU time. More cleanup. Reword man page.</title>
<updated>1998-07-27T16:54:05Z</updated>
<author>
<name>Dag-Erling Smørgrav</name>
<email>des@FreeBSD.org</email>
</author>
<published>1998-07-27T16:54:05Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=28f5cafe82db7b2e0beb244cc114d8fcae18cdfd'/>
<id>urn:sha1:28f5cafe82db7b2e0beb244cc114d8fcae18cdfd</id>
<content type='text'>
Pointed out by:	Bruce Evans
</content>
</entry>
<entry>
<title>Clean up the previous commit.</title>
<updated>1998-07-27T16:08:58Z</updated>
<author>
<name>Dag-Erling Smørgrav</name>
<email>des@FreeBSD.org</email>
</author>
<published>1998-07-27T16:08:58Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=fabfd1334a5ceebee9d15058c4726a84de1194c3'/>
<id>urn:sha1:fabfd1334a5ceebee9d15058c4726a84de1194c3</id>
<content type='text'>
</content>
</entry>
</feed>
