Problem deleting files

Yasuhiro KIMURA yasu at utahime.org
Sun Jul 1 20:00:12 UTC 2018


From: Yasuhiro KIMURA <yasu at utahime.org>
Subject: Re: Problem deleting files
Date: Mon, 02 Jul 2018 04:48:31 +0900 (JST)

> Try following command.

Or

>> find . -type f -exec rm [] \; returns rm: []: No such file or
>> directory over and over again.

Your command should be

find . -type f -exec rm {} \;

---
Yasuhiro KIMURA


More information about the freebsd-questions mailing list