Problem deleting files

Steve O'Hara-Smith steve at sohara.org
Sun Jul 1 21:42:35 UTC 2018


On Mon, 02 Jul 2018 04:48:31 +0900 (JST)
Yasuhiro KIMURA <yasu at utahime.org> wrote:

> Try following command.
> 
> find . -type f -print0 | xargs -0 rm -f

	Better still (saves a lot of forking)

find . -type f -delete

	
-- 
Steve O'Hara-Smith <steve at sohara.org>


More information about the freebsd-questions mailing list