#!/bin/bash
# Use this script to clean locks inside the .thunderbird directory that
# prevent Thunderbird from running on multiple machines that share an
# NFS system. If you open Thunderbird and get a window claiming,
# "another instance of this application is already running [...]"
# running this script will enable you to open the application on another
# host.
files=`find ~/.thunderbird -name "*lock"`
for file in `echo $files`
do
echo "removing $file..."
rm "$file"
done
Back to: GeneralFaq
-- StevenHenke - 02 Mar 2008