简体   繁体   中英

Remove only files and not the directory in linux

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

这将递归删除目录中的所有普通文件。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM