cmd/ln/bug

from HTYP, the free directory anyone can edit if they can prove to me that they're not a spambot
< cmd‎ | ln
Revision as of 13:30, 21 September 2023 by Woozle (talk | contribs) (Created page with "==2023-09-21== There seems to be a bug in the reporting when a desired link-file already exists. Real-life example: <syntaxhighlight lang=Bash> root@statler ~/dev/git/futilit...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

2023-09-21

There seems to be a bug in the reporting when a desired link-file already exists.

Real-life example:

root@statler ~/dev/git/futilities/human/apps (v0.6) $ ln -r --symbolic ./ftm/go.php ftm
ln: failed to create symbolic link 'ftm/go.php': File exists

root@statler ~/dev/git/futilities/human/apps (v0.6) $ ln -r --symbolic ./ftm/go.php ./ftm
ln: failed to create symbolic link './ftm/go.php': File exists

root@statler ~/dev/git/futilities/human/apps (v0.6) $ ln -r --symbolic ./ftm ./ftm/go.php
ln: failed to create symbolic link './ftm/go.php': File exists

root@statler ~/dev/git/futilities/human/apps (v0.6) $ cd ..
root@statler ~/dev/git/futilities/human (v0.6) $ ln -r --symbolic apps/ftm/go.php ./ftm