문제

I want to know how I can remove all the files in a directory say directory1 contains some 100 files. I just want to remove the files and not the directory.

I know that rmdir directory1 will remove directory1 completely. But I want to only remove all the files inside.

도움이 되었습니까?

해결책

Try this:

rm /path/to/directory1/*

by adding the -r option you can additionally remove contained directories and their content recursively.

다른 팁

  find /path/to/directory1 -type f | xargs rm -f

This recursively deletes all normal files in the directory.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top