From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 94D9C138247 for ; Mon, 11 Nov 2013 19:57:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 98647E0BC8; Mon, 11 Nov 2013 19:57:38 +0000 (UTC) Received: from mail-pb0-f47.google.com (mail-pb0-f47.google.com [209.85.160.47]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7CCF7E0B9E for ; Mon, 11 Nov 2013 19:57:37 +0000 (UTC) Received: by mail-pb0-f47.google.com with SMTP id rq2so2772222pbb.34 for ; Mon, 11 Nov 2013 11:57:36 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:content-type:content-transfer-encoding; bh=ql7PRS+F1AMjM6FkF1TRqCcsOVuB72ZuJ1z7q5Kplns=; b=KisDC2sXHTq0llUNSLUrgnfiB6J7PL0SO1qs5bU0OLZxRe4CNn7HH504YpE6GAYMly 6n9m2TQhrxmTLJg/2GcXptjZUj2GOhsrITqyyxGSk3A6JdHwl5boflDGetEguPwQot66 d4K30uwZdXrNNjaC09x1pTIIR62da/WCWm2vwqZovXjGPS4X3k18kNeCQnHne4Qv2hOc XrzsdxAdPAnmRxuL/iEjOVOFrMSOYWaqF+aqMeBo0cTSHmaM9Ueb03Rvq4y8IJCCvHpy ydW6eUN9Ui+MF0z8ernZpLaZ8X9lBrfTox1SU2E8SS6LhED7bSS+jrSDKWenboJAVmZj oafA== X-Received: by 10.68.171.5 with SMTP id aq5mr31896506pbc.21.1384199856347; Mon, 11 Nov 2013 11:57:36 -0800 (PST) Received: from [192.168.1.3] (213-154-212-42.static.vega-ua.net. [213.154.212.42]) by mx.google.com with ESMTPSA id nj9sm32624496pbc.13.2013.11.11.11.57.33 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Mon, 11 Nov 2013 11:57:35 -0800 (PST) Message-ID: <52813696.7070409@gmail.com> Date: Mon, 11 Nov 2013 21:57:10 +0200 From: Alexander Kapshuk User-Agent: Mozilla/5.0 (X11; Linux i686; rv:17.0) Gecko/20130923 Thunderbird/17.0.9 Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-user@lists.gentoo.org Reply-to: gentoo-user@lists.gentoo.org MIME-Version: 1.0 To: gentoo-user@lists.gentoo.org CC: Edward M Subject: Re: [gentoo-user] Firefox not killing processes on close References: <527FFCC8.8060508@gmail.com> <528121C3.6000805@gmail.com> <20131111185040.GG32524@server> <52813396.9060001@gmail.com> In-Reply-To: <52813396.9060001@gmail.com> X-Enigmail-Version: 1.5.2 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Archives-Salt: e8b968ac-a2c1-4708-ac0f-9b6bf1633f11 X-Archives-Hash: 793479bd04645cfb969ae83db8e6741c On 11/11/2013 09:44 PM, Edward M wrote: > On 11/11/2013 10:50 AM, Bruce Hill wrote: >> Couldn't you just issue: >> find .mozilla/firefox/ -iname '*.parentlock' 2>/dev/null >> rather than running strace? > Hello:-) > It may work. never tried it > Now I'm thinking probably using a shell script like the > following, can be used instead of strace . > > #!/bin/bash > p_lock=`find ~/.mozilla -name "*lock"' > for file in `echo $p_lock` > do > rm "$file" > > done > Alternatively, to the best of my knowledge, that could be shortened down to: rm `find ~/.mozilla -name "*lock"`