From owner-freebsd-questions Mon Dec 10 9:22:11 2001 Delivered-To: freebsd-questions@freebsd.org Received: from lists.blarg.net (lists.blarg.net [206.124.128.17]) by hub.freebsd.org (Postfix) with ESMTP id 045D937B417 for ; Mon, 10 Dec 2001 09:22:00 -0800 (PST) Received: from thig.blarg.net (thig.blarg.net [206.124.128.18]) by lists.blarg.net (Postfix) with ESMTP id 7C5A6BD42; Mon, 10 Dec 2001 09:21:59 -0800 (PST) Received: from localhost.localdomain ([206.124.139.115]) by thig.blarg.net (8.9.3/8.9.3) with ESMTP id JAA22499; Mon, 10 Dec 2001 09:21:51 -0800 Received: (from jojo@localhost) by localhost.localdomain (8.11.6/8.11.3) id fBAHLCn24725; Mon, 10 Dec 2001 09:21:12 -0800 (PST) (envelope-from swear@blarg.net) To: Nils Holland Cc: freebsd-questions@FreeBSD.ORG Subject: Re: Understaning the files in /stand (a little long, sorry) References: <20011210165503.A290@tisys.org> <20011210174815.B1975@tisys.org> From: swear@blarg.net (Gary W. Swearingen) Date: 10 Dec 2001 09:21:11 -0800 In-Reply-To: <20011210174815.B1975@tisys.org> Message-ID: Lines: 19 User-Agent: Gnus/5.0808 (Gnus v5.8.8) XEmacs/21.1 (Cuyahoga Valley) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Nils Holland writes: > I guess I could leave one file in > /stand around and hard link the others to it manually. If this works, is it > of any importance which file I keep around? Or can I simply delete > everything but one random file in /stand and then re-link the others to the > one remaining file? No. Yes. Something like this? for file in *; do if diff sysinstall $file; then ln sysinstall $file fi done ls -ild * To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message