Answers for "how to delete a folder in linux with files in it"

3

how to remove folder and its contents in linux

rm -rf dirname
Posted by: Guest on June-09-2020
0

linux delete files in folders without deleting the folder

find /path/to/directory -type f -exec rm -iv {} \;
Posted by: Guest on September-23-2020

Code answers related to "how to delete a folder in linux with files in it"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language