Thursday, May 26, 2016

[Linux, Command] Delete folder



Deleting all (sub) folders and files

> sudo rm -rf  folderName



  • -f = to ignore non-existent files, never prompt
  • -r = to remove directories and their contents recursively
  • -v = to explain what is being done

No comments:

Post a Comment