Answers for "command to clear the content of all files in a folder on 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

Code answers related to "command to clear the content of all files in a folder on linux"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language