unlink is a Command Line Interface tool on Linux and Unix systems. It removes links in the filesystem created by the ln command.
To find all links in current directory and run unlink:
find . -type l -exec unlink {} \;
unlink is a Command Line Interface tool on Linux and Unix systems. It removes links in the filesystem created by the ln command.
To find all links in current directory and run unlink:
find . -type l -exec unlink {} \;