<div dir="ltr">I noticed that Toybox's ls prints a "No such file or directory" error for a broken symlink, whereas GNU coreutils and FreeBSD's ls instead print the name of the symlink successfully. Is this considered a bug in Toybox?<div><br></div><div>e.g.</div><div><br></div><div>$ ln -s A B</div><div><div><br></div><div><div>$ /bin/ls -ld A</div><div>/bin/ls: cannot access A: No such file or directory</div></div><div><br></div><div>$ ~/toybox/toybox ls B ; echo $?</div><div><div>ls: B: No such file or directory</div><div>1</div></div><div><br></div><div>$ ~/toybox/toybox ls -l B ; echo $?<br></div><div><div>lrwxrwxrwx 1 rprichard 5000 1 2017-11-13 14:06 B -> A</div><div>0</div></div><div><br></div><div>$ /bin/ls B ; echo $?<br></div><div>B</div><div>0</div><div><br></div><div>$ /bin/ls -l B ; echo $?</div><div><div>lrwxrwxrwx 1 rprichard eng 1 Nov 13 14:06 B -> A</div><div>0</div></div><div><br></div></div><div>-Ryan<br></div><div><br></div></div>