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 itNow 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