Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 19 May 1998 12:52:49 -0700 (PDT)
From:      asami@FreeBSD.ORG (Satoshi Asami)
To:        danny@panda.hilink.com.au
Cc:        phk@critter.freebsd.dk, freebsd-bugs@FreeBSD.ORG
Subject:   Re: bin/6653
Message-ID:  <199805191952.MAA00778@silvia.HIP.Berkeley.EDU>
In-Reply-To: <Pine.BSF.3.91.980519203032.411U@panda.hilink.com.au> (danny@panda.hilink.com.au)

next in thread | previous in thread | raw e-mail | index | archive | help
 * What about
 * 
 * cd /var/run
 * rm -f *
 * for dir in *
 * do
 * 	rm -f $dir/*
 * done

What's wrong with

find /var/run -type f | xargs rm -f

?

Satoshi (proposed by jkh, I think)

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-bugs" in the body of the message



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