Skip to main content

toTo those who prefers to separate the options for a full mastering of their linux command lines so :

$ rm -r -f your-dir-name/ 

rm -r -f directory_name

rmrm → remove

-r-r → recursively

-f-f → force (even protected with chModincludes chmod permissions)

to those who prefers to separate the options for a full mastering of their linux command lines so :

$ rm -r -f your-dir-name/ 

rm → remove

-r → recursively

-f → force (even protected with chMod permissions)

To those who prefers to separate the options for a full mastering of their linux command lines so

rm -r -f directory_name

rm → remove

-r → recursively

-f → force (includes chmod permissions)

Source Link
marcdahan
  • 3.2k
  • 29
  • 28

to those who prefers to separate the options for a full mastering of their linux command lines so :

$ rm -r -f your-dir-name/ 

rm → remove

-r → recursively

-f → force (even protected with chMod permissions)