Re: [ubuntu-uk] Firefox v2.0 and spell checker file

2006-11-23 Thread Llywelyn Owen

Yes that's the file (persdict.dat, in the .mozilla directory), thanks to all
who helped out. I think I'll start backing this up and combining with other
user dictionaries.

--
Hwyl/Regards

Llywelyn Owen
-- 
ubuntu-uk@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
https://wiki.kubuntu.org/UKTeam/


Re: [ubuntu-uk] Firefox v2.0 and spell checker file

2006-11-23 Thread Neil Greenwood
On 23/11/06, David Hopkins <[EMAIL PROTECTED]> wrote:
>
> find $HOME/.mozilla -type f | xargs -I {} grep -H word {}
>

Quick simplification of the above command: since the filenames being
passed from xargs to grep are needed at the end of the grep command,
you can replace it with

find $HOME/.mozilla -type f | xargs grep -H word


Hwyl,
Neil.

-- 
ubuntu-uk@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
https://wiki.kubuntu.org/UKTeam/


Re: [ubuntu-uk] Firefox v2.0 and spell checker file

2006-11-23 Thread David Hopkins
On 21/11/06, Llywelyn Owen <[EMAIL PROTECTED]> wrote:
> I am bowled over by Firefox V2.0 on my Edgy installation. Of particular
> interest for me is the web form spell checker which does what Google does
> not and that is add new words to a dictionary. Where is this dictionary file
> kept so that I can make backups of it etc? Is it compatible with other
> dictionary files and can I therefore maintain one dictionary file for OOo
> and Firefox?
> --
> Hwyl/Regards
>
> Llywelyn Owen


Hey Llywelyn!

Perhaps try this from a terminal

find $HOME/.mozilla -type f | xargs -I {} grep -H word {}

where word is a custom word you have added to your dictionary.

On mine that got me a file called "persdict.dat", but it could be
different on yours hence the find statement. I usually just backup my
whole .mozilla directory anyway.

Good luck!

-- 
ubuntu-uk@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
https://wiki.kubuntu.org/UKTeam/