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? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Environment: Ubuntu 24.04, uutils main branch (git commit 2afab7c), GNU coreutils v9.6.16-3f7c3-modified.
main
Steps to reproduce:
touch -d yesterday old touch new cp -v -i --update=older new old
What happens now: uutils cp prints 'new' -> 'old' before the interactive prompt:
cp
'new' -> 'old'
'new' -> 'old' cp: overwrite 'old'? y
What I expected to happen: GNU cp prints the verbose message only after the user confirms the operation in the interactive prompt:
cp: overwrite 'old'? y 'new' -> 'old'
Notes: this is causing a failure in the GNU test file tests/cp/cp-i.sh.
tests/cp/cp-i.sh
The text was updated successfully, but these errors were encountered:
Hello, I'd like to work on this issue. May I proceed?
Sorry, something went wrong.
Sure :)
cp: fix verbose output order after prompt
f13d531
Fixes: uutils#7285
dd7b454
Successfully merging a pull request may close this issue.
Environment: Ubuntu 24.04, uutils
main
branch (git commit 2afab7c), GNU coreutils v9.6.16-3f7c3-modified.Steps to reproduce:
What happens now: uutils
cp
prints'new' -> 'old'
before the interactive prompt:What I expected to happen: GNU
cp
prints the verbose message only after the user confirms the operation in the interactive prompt:Notes: this is causing a failure in the GNU test file
tests/cp/cp-i.sh
.The text was updated successfully, but these errors were encountered: