Answers for "delete contents of folder linux"

8

remove all files inside directory linux

# remove everything in a directory 
rm /path/to/dir/*
# remove all sub-directories and files
rm -r /path/to/dir/*
Posted by: Guest on July-10-2020
6

remove directory and contents linux

rm -r path
Posted by: Guest on June-27-2020
1

how to remove folder and its contents in linux

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

linux delete content of folder

//Deletes the folder including all its content
rm -r /path/to/directory/*
Posted by: Guest on June-15-2021

Code answers related to "delete contents of folder linux"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language