Answers for "remove a folder in terminal"

5

remove folder from terminal

rm -rf some_dir
Posted by: Guest on July-27-2021
4

remove directory from linux

rm -r filename

rm -rf filename

this command remove the directory and subdirectory forecefully
Posted by: Guest on October-04-2020
2

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 "remove a folder in terminal"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language