2

Is there a way to exclude all files, in all subfolders, and keep the folder structure?

muru
  • 207,228
Student
  • 12,236

1 Answers1

2

I presume you want to delete them...

find -type f -delete

This will delete all files in the current folder and all subfolders but leave the directories intact.

Adrian
  • 5,256