find -delete, . find , -delete , . , ,
While the command rm -rfrecursively deletes files / directories no matter what. This means that it rmwill delete all files and directories in a specific path. -rmeans recursion, and -f- forced removal. Therefore, rmin conjunction with -rfwill continue to delete directories and files in directories on the target path until it finds more.
source
share