《问》How to create und remove a link to a directory
《问》
How to create and remove a link to a directory?create
# Source Link
ln -s /this/is/real/directory/file /this/is/virtual/link/file
remove
unlink /this/is/virtual/link/file
Show
ls -l /this/is/virtual/link/
Comments