Modifique entradas no arquivo de configuração

Modifique entradas no arquivo de configuração

Temos o seguinte arquivo de configuração

more /tmp/file

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

Precisamos converter toda a sintaxe acima como a seguir:

  1. Altere os caracteres até o separador “=” para caracteres maiúsculos
  2. Adicione KAFKA_no início de cada linha
  3. Substitui cada ponto “.” Para abaixo da linha “_” até o separador “=”

Exemplo de resultados esperados

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

Alguma sugestão sed para essa mudança?

Nós tentamos isso,

mas isso também converte os afretadores após o separador “=” (não como deveria ser), e também não temos certeza de como podemos adicionar o KAFKA_no início

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

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

Responder1

Com GNU awk para o terceiro argumento corresponder ():

$ 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

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

Responder2

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

SAÍDA

KAFKA_DELETE_TOPIC_ENABLE=true
KAFKA_BROKER_ID=-1
KAFKA_ADVERTISED_LISTENERS=nul1

Pitão

#!/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()

saída

KAFKA_DELETE_TOPIC_ENABLE=true
KAFKA_BROKER_ID=-1
KAFKA_ADVERTISED_LISTENERS=null

Responder3

perluma linha:

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

informação relacionada