How do I manage symbolic links in SSH?
Последна промяна: 15.10.2025 09:03
To manage symbolic links in SSH, use these commands:
- Find symbolic links:
find . -type l
- Delete symbolic links:
find . -type l -delete
- Create a symbolic link:
ln -s ../storage/app/public ./storage
Ensure paths are correct for your specific use case.