Gentoo Archives: gentoo-user

From: Edward M <edwardlotus@×××××.com>
To: gentoo-user@l.g.o
Subject: Re: [gentoo-user] Firefox not killing processes on close
Date: Mon, 11 Nov 2013 19:44:32
Message-Id: 52813396.9060001@gmail.com
In Reply to: Re: [gentoo-user] Firefox not killing processes on close by Bruce Hill
1 On 11/11/2013 10:50 AM, Bruce Hill wrote:
2 > Couldn't you just issue:
3 > find .mozilla/firefox/ -iname '*.parentlock' 2>/dev/null
4 > rather than running strace?
5 Hello:-)
6 It may work. never tried it
7 Now I'm thinking probably using a shell script like the
8 following, can be used instead of strace .
9
10 #!/bin/bash
11 p_lock=`find ~/.mozilla -name "*lock"'
12 for file in `echo $p_lock`
13 do
14 rm "$file"
15
16 done

Replies

Subject Author
Re: [gentoo-user] Firefox not killing processes on close Alexander Kapshuk <alexander.kapshuk@×××××.com>