I'm facing the following problem:
Output1
sh-3.2$ ls -R
.:
#dir1 #dir2
./#dir1:
f1 f2 f3
./#dir2:
f1 f2 f3
Output2
sh-3.2$ ls #dir1
#dir1 #dir2
As seen in Output1 the directory #dir1 has file f1 f2 and f3 but when
I do a ls on the directory I get a different output as seen in Output2
Output2 seems to suggest that #dir1 has directories like #dir1 #dir2.
What is going on here? Is this some cyclic link?
