I have a file with the following content:
$ cat file.txtCREATE COLLATION public.collation123 (provider = libc, locale = 'fr-FR'); CREATE COLLATION public.collation_1 (provider = libc, locale = 'bas'); CREATE COLLATION public.collation_test (provider = libc, locale = 'fr-FR');
I want to replace the first occurrence of locale = 'fr-FR'
with locale = 'fr_FR.utf8'
.
After replacing, the file should have the following content:
$cat file.txtCREATE COLLATION public.collation123 (provider = libc, locale = 'fr_FR.utf8'); CREATE COLLATION public.collation_1 (provider = libc, locale = 'bas'); CREATE COLLATION public.collation_test (provider = libc, locale = 'fr-FR');