We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[a]$ mkdir b c [a]$ touch b/file c/file [a]$ tree . . ├── b │ └── file └── c └── file 2 directories, 2 files [a]$ cp b/file c/file ./ cp: will not overwrite just-created './file' with 'c/file' [a]$ rsync b/file c/file ./ # no warning printed! [a]$
I think it would be a good idea if rsync gives an error, or at least a warning.
rsync
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I think it would be a good idea if
rsync
gives an error, or at least a warning.The text was updated successfully, but these errors were encountered: