I need to delete a directory that contains several sub-directories and files. After googling and looking at the man pages of rmdir and rm, I have these two alternatives:
$ rm -rf <folder_name> and $ \rm -rf <folder_name>
How do these two differ?