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