Re: [Frescobaldi] Problems with Frescobaldi and LilyPond

2022-05-26 Thread Ralph Palmer
On Mon, May 23, 2022 at 3:31 AM Kevin Cole wrote: > I guess I would have gone the other way and renamed the user > rpalmer again... (The following may not be the BEST way to do it but gets > the job done.) > > sudo -i > for x in group* gshadow* passwd* shadow* subgid* subuid* > do >perl -p -i

Re: [Frescobaldi] Problems with Frescobaldi and LilyPond

2022-05-23 Thread Kevin Cole
I guess I would have gone the other way and renamed the user rpalmer again... (The following may not be the BEST way to do it but gets the job done.) sudo -i for x in group* gshadow* passwd* shadow* subgid* subuid* do perl -p -i -e "s/ralph/rpalmer/g;" $x done mv /home/ralph /home/rpalmer exit