Linux has rm command to delete files and directory in the file system. However rm command alone never work if directory is filled with content and not blank. Rm command support switches that help you to delete all files and sub-directories recursively within a target directory.

$rm -rf  [name of directory]

Use the command above with -rf switch to removed all content recursively without confirmation. Replace [name of directory] with actual directory name. If name of directory is not in current directory then use full path. -r switch used to delete directory even if directory not blank. -f switch used to force directory deletion.

 

Written by Hemant Patel

Hemant, hailing from Bhopal, Madhya Pradesh, India, is a web developer and occasional blogger passionate about exchanging ideas and addressing problems in his coding journey.