Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 02 Jul 2018 04:59:45 +0900 (JST)
From:      Yasuhiro KIMURA <yasu@utahime.org>
To:        freebsd-questions@freebsd.org
Subject:   Re: Problem deleting files
Message-ID:  <20180702.045945.196506400937397770.yasu@utahime.org>
In-Reply-To: <20180702.044831.477271088854915236.yasu@utahime.org>
References:  <85B4CFC22AC0CA70B917D42D@Pauls-MacBook-Pro.local> <20180702.044831.477271088854915236.yasu@utahime.org>

next in thread | previous in thread | raw e-mail | index | archive | help
From: Yasuhiro KIMURA <yasu@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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20180702.045945.196506400937397770.yasu>