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

Java : Variables Declaring

SQL Self JOIN