I am trying to create symbolic link as below:
ln -s /home/scripts/logs /home/log
The directory /home/log/home/log is already existing ,which cant which can't be deleted. When i
When I do this it creates the symbolic link as /home/log/logs /home/log/logs.
I know that if the target is a directory and it already exists ln -s will create a sub folder-folder of source inside target directory. But i
But I just want the contents of my source directory (/home/scripts/logs/"test_contents") to/home/scripts/logs/test_contents to be in target(/home/log/"test_contents") /home/log/test_contents. Do we gave
Is there any solution for this Note?
Note: i cantI can't remove /home/logs/home/logs which contains logs of other applications