bug#29315: info cp: documentation feedback

2018-08-16 Thread kalle
I already sent this mail on 19.05.2018, but since I got no response and my bug-report then had be closed and I just unarchived and reopened it, here again my message. > Am 10.12.2017 um 01:23 schrieb Pádraig Brady: >> On 16/11/17 03:36, kalle wrote: >> here some mistakes/improvement proposals to

bug#32450: uniq -f: unexpected behaviour

2018-08-16 Thread Paul Eggert
I'm not observing this problem in coreutils 8.29, the current version. Please give that a try. If you're still seeing the problem, please let us know your platform, how you built coreutils, and your locale (run the 'locale' command). Thanks.

bug#32455: cp gets confused by symlinks to parent directory

2018-08-16 Thread Mike Crowe
If cp is passed the -d option and told to copy a symlink to the directory containing the symlink then it ends up removing the target directory so it is unable to create the symlink. Reproduction script: --8<-- #!/bin/sh set -x rm -rf temp mkdir -p temp/src temp/dest ln -s . temp/src/self #