Modificar entradas en el archivo de configuración

Modificar entradas en el archivo de configuración

Tenemos el siguiente archivo de configuración

more /tmp/file

delete.topic.enable=true
broker.id=-1
advertised.listeners=null
.
.
.

Necesitamos convertir toda la sintaxis anterior a la siguiente:

  1. Cambie los caracteres hasta el separador “=" a caracteres en mayúsculas
  2. Añadir KAFKA_al principio de cada línea.
  3. Reemplaza cada punto "." Subir la línea “_” hasta el separador “="

Ejemplo de resultados esperados

KAFKA_DELETE_TOPIC_ENABLE=true
KAFKA_BROKER_ID=-1
KAFKA_ADVERTISED_LISTENERS=null
.
.
.

¿Alguna sugerencia sed para este cambio?

Intentamos esto,

pero esto también convierte a los fletadores después del separador “=" (no como debería ser), y tampoco estamos seguros de cómo podemos agregar el KAFKA_al principio

sed 's/[a-z]/\U&/g'  /tmp/file | sed s'/\./_/g'

DELETE_TOPIC_ENABLE=TRUE
BROKER_ID=-1
ADVERTISED_LISTENERS=NULL
.
.

Respuesta1

Con GNU awk para que el tercer argumento coincida():

$ awk 'match($0,/([^=]+)(.*)/,a){ gsub(/\./,"_",a[1]); print "KAFKA_" toupper(a[1]) a[2]}' file
KAFKA_DELETE_TOPIC_ENABLE=true
KAFKA_BROKER_ID=-1
KAFKA_ADVERTISED_LISTENERS=null

Con cualquier awk:

$ awk 'match($0,/[^=]+/){ tag=substr($0,1,RLENGTH); gsub(/\./,"_",tag); print "KAFKA_" toupper(tag) substr($0,1+RLENGTH)}' file
KAFKA_DELETE_TOPIC_ENABLE=true
KAFKA_BROKER_ID=-1
KAFKA_ADVERTISED_LISTENERS=null

Respuesta2

awk -F "=" 'OFS="="{gsub(/\./,"_",$1);print "KAFKA_"toupper($1)"="$2}' FILE

PRODUCCIÓN

KAFKA_DELETE_TOPIC_ENABLE=true
KAFKA_BROKER_ID=-1
KAFKA_ADVERTISED_LISTENERS=nul1

pitón

#!/usr/bin/python
import re
k=open('file1','r')
for i in k:
    y=i.split('=')
    z=y[0].upper().replace(".","_")+"="+y[1]
    print "KAFKA_{0}".format(z).strip()

producción

KAFKA_DELETE_TOPIC_ENABLE=true
KAFKA_BROKER_ID=-1
KAFKA_ADVERTISED_LISTENERS=null

Respuesta3

perlun trazador de líneas:

perl -pe 's/^([^=]+)/KAFKA_\U$1/; s/\.(?=[^=]*=)/_/g' file

información relacionada