LINUX How to delete a hard/soft link

You can delete hard link with the rm command itself:
$ rm {hard-link}
$ rm link-here

You can delete soft link with the rm command itself:
$ rm {soft-link}
$ rm link-here

Comments

Popular posts from this blog

LINUX Move and copy files using SSH

PHP Predefined Variables

Java : Variables Declaring