Answers for "delete directory mac terminal"

4

mac terminal delete directory

rm -rf dir
Posted by: Guest on November-05-2020
3

delete directory mac terminal

rm -r dirname
Posted by: Guest on August-13-2020
2

how delete folder terminal mac

rm -rf some_dir
-r "recursive" -f "force" (suppress confirmation messages)

Be careful!
Posted by: Guest on October-28-2020
3

delete a directory bash script

rmdir dirname
Posted by: Guest on August-12-2020
1

how to delete a directory in the terminal

$ cd ~
$ cd documents
$ pwd
    /users/jpalomino/documents
$ ls    
    assignments  
$ rm -r assignments
Posted by: Guest on June-20-2021

Code answers related to "delete directory mac terminal"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language