You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The -P (--no-dereference) option in uutils cp does not match the behavior of GNU cp when attempting to copy a symbolic link that points to a file that does not exist.
GNU cp:
$ ln -s no-such-file dangle && cp -P dangle d2
# no output, d2 is created
uutils cp:
$ ln -s no-such-file dangle && ./target/release/cp -P dangle d2
./target/release/cp: not writing through dangling symlink 'd2'
The text was updated successfully, but these errors were encountered:
The
-P
(--no-dereference
) option in uutilscp
does not match the behavior of GNUcp
when attempting to copy a symbolic link that points to a file that does not exist.GNU cp:
uutils cp:
The text was updated successfully, but these errors were encountered: