Rich Shepard wrote: > I've somehow managed to enter a label twice. While I suppose it doesn't > matter technically, it is not elegant and I'd like to clean it up. To do > so, I need to find all references to that label and make sure that each > one points to only one instance of it. > > I've tried searching for the the label string and for the chapter > heading > it references. "Find" doesn't find any matching hits. I'm sure I've not > specified the search string correctly. > > Please pass me a pointer on how to find all references to a label.
grep -n my_label *.lyx ? Actually, since a label reference is just a string, removing the extra label 'should just work'. -- Angus
