| #
1b374897
|
| 20-Apr-2025 |
Kyle Evans <kevans@FreeBSD.org> |
tee: try opening as a UNIX socket if open(2) fails
If we get EOPNOTSUPP from open() failing, then it may just be that we're looking at a unix(4) socket instead of a normal file/device or whatnot. Fa
tee: try opening as a UNIX socket if open(2) fails
If we get EOPNOTSUPP from open() failing, then it may just be that we're looking at a unix(4) socket instead of a normal file/device or whatnot. Fallback to trying to open it as a unix(4) socket, which is a useful feature that doesn't add much complexity.
Reviewed by: des, emaste, markj Differential Revision: https://reviews.freebsd.org/D48197
show more ...
|
| #
bdcbfde3
|
| 23-Nov-2023 |
Warner Losh <imp@FreeBSD.org> |
usr.bin: Remove ancient SCCS tags.
Remove ancient SCCS tags from the tree, automated scripting, with two minor fixup to keep things compiling. All the common forms in the tree were removed with a pe
usr.bin: Remove ancient SCCS tags.
Remove ancient SCCS tags from the tree, automated scripting, with two minor fixup to keep things compiling. All the common forms in the tree were removed with a perl script.
Sponsored by: Netflix
show more ...
|
| #
b2c76c41
|
| 16-Aug-2023 |
Warner Losh <imp@FreeBSD.org> |
Remove $FreeBSD$: one-line nroff pattern
Remove /^\.\\"\s*\$FreeBSD\$$\n/
|
| #
514df635
|
| 30-Oct-2022 |
Gordon Bergling <gbe@FreeBSD.org> |
tee.1: Add a HISTORY section
The most accurate information I have found is that tee(1) first appeared in Version 7 AT&T UNIX.
Reviewed by: pauamma MFC after: 1 week Differential Revision: https://r
tee.1: Add a HISTORY section
The most accurate information I have found is that tee(1) first appeared in Version 7 AT&T UNIX.
Reviewed by: pauamma MFC after: 1 week Differential Revision: https://reviews.freebsd.org/D37206
show more ...
|
| #
9ec57102
|
| 23-Jun-2020 |
Mateusz Piotrowski <0mp@FreeBSD.org> |
tee.1: Add a missing article
|
| #
fcc879ad
|
| 23-Jun-2020 |
Fernando Apesteguía <fernape@FreeBSD.org> |
tee(1): Add EXAMPLES section
Add one simple example
Approved by: bcr@ Differential Revision: https://reviews.freebsd.org/D25337
|
| #
d70bfedd
|
| 18-Jun-2020 |
Fernando Apesteguía <fernape@FreeBSD.org> |
tee(1): Add EXAMPLES section
Probably the simplest one ever.
Approved by: gbe@, 0mp@ Differential Revision: https://reviews.freebsd.org/D25206
|
| #
1b374897
|
| 20-Apr-2025 |
Kyle Evans <kevans@FreeBSD.org> |
tee: try opening as a UNIX socket if open(2) fails
If we get EOPNOTSUPP from open() failing, then it may just be that we're looking at a unix(4) socket instead of a normal file/device or whatnot. Fa
tee: try opening as a UNIX socket if open(2) fails
If we get EOPNOTSUPP from open() failing, then it may just be that we're looking at a unix(4) socket instead of a normal file/device or whatnot. Fallback to trying to open it as a unix(4) socket, which is a useful feature that doesn't add much complexity.
Reviewed by: des, emaste, markj Differential Revision: https://reviews.freebsd.org/D48197
show more ...
|
| #
bdcbfde3
|
| 23-Nov-2023 |
Warner Losh <imp@FreeBSD.org> |
usr.bin: Remove ancient SCCS tags.
Remove ancient SCCS tags from the tree, automated scripting, with two minor fixup to keep things compiling. All the common forms in the tree were removed with a pe
usr.bin: Remove ancient SCCS tags.
Remove ancient SCCS tags from the tree, automated scripting, with two minor fixup to keep things compiling. All the common forms in the tree were removed with a perl script.
Sponsored by: Netflix
show more ...
|
| #
b2c76c41
|
| 16-Aug-2023 |
Warner Losh <imp@FreeBSD.org> |
Remove $FreeBSD$: one-line nroff pattern
Remove /^\.\\"\s*\$FreeBSD\$$\n/
|
| #
514df635
|
| 30-Oct-2022 |
Gordon Bergling <gbe@FreeBSD.org> |
tee.1: Add a HISTORY section
The most accurate information I have found is that tee(1) first appeared in Version 7 AT&T UNIX.
Reviewed by: pauamma MFC after: 1 week Differential Revision: https://r
tee.1: Add a HISTORY section
The most accurate information I have found is that tee(1) first appeared in Version 7 AT&T UNIX.
Reviewed by: pauamma MFC after: 1 week Differential Revision: https://reviews.freebsd.org/D37206
show more ...
|
| #
9ec57102
|
| 23-Jun-2020 |
Mateusz Piotrowski <0mp@FreeBSD.org> |
tee.1: Add a missing article
|
| #
fcc879ad
|
| 23-Jun-2020 |
Fernando Apesteguía <fernape@FreeBSD.org> |
tee(1): Add EXAMPLES section
Add one simple example
Approved by: bcr@ Differential Revision: https://reviews.freebsd.org/D25337
|
| #
d70bfedd
|
| 18-Jun-2020 |
Fernando Apesteguía <fernape@FreeBSD.org> |
tee(1): Add EXAMPLES section
Probably the simplest one ever.
Approved by: gbe@, 0mp@ Differential Revision: https://reviews.freebsd.org/D25206
|
| #
fbc88a6f
|
| 06-Dec-2017 |
Eitan Adler <eadler@FreeBSD.org> |
sponge(1): revert
I did a complete buildworld and test... with the program disconnected from the tree. Revert the change for now.
(this keeps the change to .arclint which is still correct)
Wearing
sponge(1): revert
I did a complete buildworld and test... with the program disconnected from the tree. Revert the change for now.
(this keeps the change to .arclint which is still correct)
Wearing: my pointhat
show more ...
|
| #
7202e5e8
|
| 05-Dec-2017 |
Eitan Adler <eadler@FreeBSD.org> |
sponge(1): initial commit
sponge(1) is a utility that reads input until complete, then opens the output file, then writes to it. This makes it useful in pipelines that read and write to the same fil
sponge(1): initial commit
sponge(1) is a utility that reads input until complete, then opens the output file, then writes to it. This makes it useful in pipelines that read and write to the same file.
Reviewed by: wblock, jilles, imp, cem, danfe (all: various iterations) Inspired by: https://joeyh.name/code/moreutils/
show more ...
|
| #
348238db
|
| 01-Mar-2017 |
Dimitry Andric <dim@FreeBSD.org> |
Merge ^/head r314420 through r314481.
|
| #
fbbd9655
|
| 28-Feb-2017 |
Warner Losh <imp@FreeBSD.org> |
Renumber copyright clause 4
Renumber cluase 4 to 3, per what everybody else did when BSD granted them permission to remove clause 3. My insistance on keeping the same numbering for legal reasons is
Renumber copyright clause 4
Renumber cluase 4 to 3, per what everybody else did when BSD granted them permission to remove clause 3. My insistance on keeping the same numbering for legal reasons is too pedantic, so give up on that point.
Submitted by: Jan Schaumann <jschauma@stevens.edu> Pull Request: https://github.com/freebsd/freebsd/pull/96
show more ...
|
| #
fbc88a6f
|
| 06-Dec-2017 |
Eitan Adler <eadler@FreeBSD.org> |
sponge(1): revert
I did a complete buildworld and test... with the program disconnected from the tree. Revert the change for now.
(this keeps the change to .arclint which is still correct)
Wearing
sponge(1): revert
I did a complete buildworld and test... with the program disconnected from the tree. Revert the change for now.
(this keeps the change to .arclint which is still correct)
Wearing: my pointhat
show more ...
|
| #
7202e5e8
|
| 05-Dec-2017 |
Eitan Adler <eadler@FreeBSD.org> |
sponge(1): initial commit
sponge(1) is a utility that reads input until complete, then opens the output file, then writes to it. This makes it useful in pipelines that read and write to the same fil
sponge(1): initial commit
sponge(1) is a utility that reads input until complete, then opens the output file, then writes to it. This makes it useful in pipelines that read and write to the same file.
Reviewed by: wblock, jilles, imp, cem, danfe (all: various iterations) Inspired by: https://joeyh.name/code/moreutils/
show more ...
|
| #
348238db
|
| 01-Mar-2017 |
Dimitry Andric <dim@FreeBSD.org> |
Merge ^/head r314420 through r314481.
|
| #
fbbd9655
|
| 28-Feb-2017 |
Warner Losh <imp@FreeBSD.org> |
Renumber copyright clause 4
Renumber cluase 4 to 3, per what everybody else did when BSD granted them permission to remove clause 3. My insistance on keeping the same numbering for legal reasons is
Renumber copyright clause 4
Renumber cluase 4 to 3, per what everybody else did when BSD granted them permission to remove clause 3. My insistance on keeping the same numbering for legal reasons is too pedantic, so give up on that point.
Submitted by: Jan Schaumann <jschauma@stevens.edu> Pull Request: https://github.com/freebsd/freebsd/pull/96
show more ...
|
| #
da52b4ca
|
| 11-Dec-2010 |
Joel Dahl <joel@FreeBSD.org> |
Remove the advertising clause from UCB copyrighted files in usr.bin. This is in accordance with the information provided at ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change
Also add $F
Remove the advertising clause from UCB copyrighted files in usr.bin. This is in accordance with the information provided at ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change
Also add $FreeBSD$ to a few files to keep svn happy.
Discussed with: imp, rwatson
show more ...
|
| #
95d0af0c
|
| 13-Nov-2007 |
Ruslan Ermilov <ru@FreeBSD.org> |
- Steal short description from POSIX; it's more technical and was easier to translate. - Fix some markup nits.
|
| #
a866e170
|
| 17-Jan-2005 |
Ruslan Ermilov <ru@FreeBSD.org> |
Added the EXIT STATUS section where appropriate.
|