Answers for "ubuntu delete directory and all files"

2

ubuntu delete directory and all files

rm -rf ./test
Posted by: Guest on February-01-2021
6

linux remove folder and all his content

rm -rf /path/to/directory
Posted by: Guest on February-29-2020
4

remove folder ubuntu

$ rm -r directoryName
Posted by: Guest on November-24-2020
1

how to remove directory in cmd

# for removing empty directory
$ rmdir myDirectory

# to remove a directory that contains files and subdirectory
$ rm -r myDirectory
rm -rf /config/filegroups/*/
Posted by: Guest on October-08-2020
0

linux delete subfolders

rm -rf /config/filegroups/*/
Posted by: Guest on October-08-2020
0

ubuntu delete contents of folder

To remove all non-hidden files and sub-directories (along with all of their contents) in a 
directory use:
rm -r /path/to/directory/*
Posted by: Guest on December-25-2020

Code answers related to "ubuntu delete directory and all files"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language