Answers for "how to delete a directory in the terminal"

1

remove folder from terminal

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

remove a file or dir in linux or mac or ubuntu

note:your_file_name can be a dir or a file 

sudo rm -r your_file_name
Posted by: Guest on May-11-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
3

terminal delete fle

rm MyFile.rtf
Posted by: Guest on January-16-2020

Code answers related to "how to delete a directory in the terminal"

Code answers related to "Javascript"

Browse Popular Code Answers by Language