I need to make a folder with name ./public/sop
behave like it is ./public
.
I tried ln -s ./public/ ./public/sop
and there were no errors. But it doesn't work. ls ./public/sop
does not show the other files/folders in the ./public
folder. It shows just one line:
lrwxrwxrwx 1 pi pi 9 Nov 20 13:06 public/sop -> ./public/
And an attempt to ls ./public/sop/test.txt
, where test.txt
is an existing file in ./public
, returns No such file or directory
.
How can I achieve what I need?