| Commit message (Expand) | Author | Age | Files | Lines |
| * | cp: Expect EINTR while copying | Dag-Erling Smørgrav | 2026-02-15 | 1 | -2/+5 |
| * | cp: Clarify an obscure comment. | Dag-Erling Smørgrav | 2024-04-24 | 1 | -7/+20 |
| * | cp: Remove useless ssize_t cast | Collin Funk | 2024-04-18 | 1 | -1/+1 |
| * | cp: Add tests for hard link case. | Dag-Erling Smørgrav | 2024-01-17 | 1 | -61/+61 |
| * | cp: Add -N flag, inspired by NetBSD's similar flag | Warner Losh | 2024-01-17 | 1 | -3/+12 |
| * | Remove $FreeBSD$: one-line .c pattern | Warner Losh | 2023-08-16 | 1 | -2/+0 |
| * | cp: Revert "If copy_file_range(2) fails with EXDEV, use fall-back." | Mateusz Guzik | 2023-04-24 | 1 | -1/+1 |
| * | If copy_file_range(2) fails with EXDEV, use fall-back. | Poul-Henning Kamp | 2023-04-04 | 1 | -1/+1 |
| * | cp: Minor code cleanup. | Dag-Erling Smørgrav | 2023-02-03 | 1 | -3/+2 |
| * | cp: Simplify the common case. | Dag-Erling Smørgrav | 2023-02-02 | 1 | -89/+33 |
| * | cp: Fix build without VM_AND_BUFFER_CACHE_SYNCHRONIZED. | Alexander Motin | 2022-08-30 | 1 | -10/+9 |
| * | cp: fix indentation | Baptiste Daroussin | 2021-01-27 | 1 | -1/+1 |
| * | cp(1): fix performance issue for large non-sparse file copies | Rick Macklem | 2021-01-03 | 1 | -6/+5 |
| * | cp: fall back to read/write if copy_file_range fails | Alan Somers | 2020-09-11 | 1 | -4/+35 |
| * | cp: use copy_file_range(2) | Alan Somers | 2020-09-10 | 1 | -21/+10 |
| * | General further adoption of SPDX licensing ID tags. | Pedro F. Giffuni | 2017-11-20 | 1 | -0/+2 |
| * | Renumber copyright clause 4 | Warner Losh | 2017-02-28 | 1 | -1/+1 |
| * | Cleanup some style(9) issues. | Bryan Drewery | 2015-06-08 | 1 | -29/+38 |
| * | Implement '-s' to copy as symlink, similar to the current -l link(2) handling. | Bryan Drewery | 2015-06-07 | 1 | -19/+27 |
| * | Cleanup some indentation issues. | Bryan Drewery | 2015-06-07 | 1 | -9/+8 |
| * | cp,mv: Use futimens() instead of utimensat() if possible. | Jilles Tjoelker | 2015-03-23 | 1 | -1/+1 |
| * | cp,mv,touch: Set timestamps with nanosecond precision. | Jilles Tjoelker | 2015-01-24 | 1 | -5/+6 |
| * | Return with an error from copy_link(), copy_fifo() and copy_special() if | Mark Johnston | 2013-01-27 | 1 | -0/+17 |
| * | Return "failure" as we do for 'cp -i' and a "n" answer. | David E. O'Brien | 2013-01-23 | 1 | -1/+1 |
| * | Change all our own code to use st_*tim instead of st_*timespec. | Ed Schouten | 2010-03-28 | 1 | -2/+2 |
| * | Implement an "-x" option to cp(1), for compatibility with Linux and | Gavin Atkinson | 2010-01-17 | 1 | -2/+2 |
| * | Add NFSv4 ACL support to cp(1) and fix a few memory leaks. | Edward Tomasz Napierala | 2009-09-02 | 1 | -28/+91 |
| * | Preserve file flags on symlinks in cp -Rp. | Jilles Tjoelker | 2009-05-30 | 1 | -1/+1 |
| * | Teach cat(1) and cp(1) to use a larger buffer if enough memory is present | Ivan Voras | 2008-10-30 | 1 | -2/+29 |
| * | Add fallback when mmap fails on regular files. Some filesystems, | Diomidis Spinellis | 2008-10-27 | 1 | -30/+28 |
| * | Remove redundant close(2). | Edward Tomasz Napierala | 2008-09-09 | 1 | -1/+0 |
| * | Fix ACL preservation, apparently broken in 1.47. | Edward Tomasz Napierala | 2008-08-07 | 1 | -1/+3 |
| * | Add an '-a' option which is identical to specifying '-RpP' for | John Baldwin | 2008-03-10 | 1 | -2/+2 |
| * | o Style(9). | Maxim Konovalov | 2006-10-07 | 1 | -9/+7 |
| * | o Avoid division by zero. | Maxim Konovalov | 2006-10-07 | 1 | -3/+8 |
| * | o Hold copied bytes counter in off_t. This prevents statistics | Maxim Konovalov | 2006-10-06 | 1 | -1/+1 |
| * | - Fix options order. | Ruslan Ermilov | 2006-08-25 | 1 | -2/+2 |
| * | Remove a stray -a option that probably sneaked in from julian's | Ruslan Ermilov | 2006-08-25 | 1 | -2/+2 |
| * | Add an option to allow copying of a hierarchy while linking he regular files. | Julian Elischer | 2006-08-24 | 1 | -77/+92 |
| * | Attempt to complete the userspace integration of POSIX.1e extended ACLs. | Christian S.J. Peron | 2005-09-05 | 1 | -0/+80 |
| * | Sync program's usage() with manpage's SYNOPSIS. | Ruslan Ermilov | 2005-02-09 | 1 | -2/+3 |
| * | Plug file descriptor leak in implementation of -n option. | Tim J. Robbins | 2004-06-05 | 1 | -0/+1 |
| * | Remove clause 3 from the UCB licenses. | Mark Murray | 2004-04-06 | 1 | -4/+0 |
| * | Don't mmap(2) and munmap(2) zero-length files. | Alan Cox | 2003-11-13 | 1 | -1/+2 |
| * | support saving both user/group and permissions on symlinks (from PR) | John-Mark Gurney | 2003-06-22 | 1 | -13/+20 |
| * | Add a SIGINFO handler. | Matthew N. Dodd | 2003-04-07 | 1 | -0/+22 |
| * | Constify and staticify for lint. | Mark Murray | 2002-10-18 | 1 | -2/+2 |
| * | Fix some easy WARNS. | Mark Murray | 2002-07-31 | 1 | -4/+4 |
| * | Add the -n option, which automatically answers "no" to the overwrite question. | Johan Karlsson | 2002-07-23 | 1 | -3/+7 |
| * | Fix some low-hanging lint-fruit: endianness and staticness warnings. | Mark Murray | 2002-07-03 | 1 | -2/+4 |