Crie várias cópias do arquivo com uma linha em cada cópia alterada

0

Eu tenho que automatizar simulações e para isso eu preciso criar arquivos de entrada para cada simulação. A maioria das minhas simulações é quase idêntica, com uma linha de texto alterada de um arquivo para o próximo. Como posso pegar um arquivo de texto e fazer várias cópias dele com uma linha específica alterada? Por exemplo, se um arquivo de texto for mantido:

! input file
a = 6
b = 6
d = 789
! end

Digamos que eu queira criar 6 novos arquivos a partir desse modelo, mas minha variável b é reduzida em um em cada arquivo subseqüente, como posso fazer isso em bash ou python?

    
por Sinux1 28.06.2018 / 22:34

2 respostas

1

método básico pode ser semelhante a este no exemplo i modificar um valor = bye números & arquivos & filename também tem valor dentro, então são arquivos separados

#!/bin/bash


for i in a b c 1 2 3  ; do
    cat > file${i} << EOT
! input file
a = ${i}
b = 6
d = 789
! end
EOT
done

para obter 6 arquivos com 6 conteúdos diferentes como:

# cat file?
! input file
a = 1
b = 6
d = 789
! end
! input file
a = 2
b = 6
d = 789
! end
! input file
a = 3
b = 6
d = 789
! end
! input file
a = a
b = 6
d = 789
! end
! input file
a = b
b = 6
d = 789
! end
! input file
a = c
b = 6
d = 789
! end

se você tiver que ler o valor b de um arquivo de referência você pode usar uma variável do subcomando read por exemplo

while read ; do
cat > file${REPLY} << EOT
! input file
a = 1
b = ${REPLY}
d = 789
! end
EOT
done < referencefile

exemplo completo em condição real:

[root@h2g2w tmp]# cat > ./test.sh
while read ; do
cat > file${REPLY} << EOT
! input file
a = 1
b = ${REPLY}
d = 789
! end
EOT
done < referencefile


[root@h2g2w tmp]# cat > referencefile 
qsd
gfd
eza
vxcv
bxc
[root@h2g2w tmp]# 
[root@h2g2w tmp]# sh ./test.sh 
[root@h2g2w tmp]# ls -lrth file???
-rw-r--r--. 1 root root 41 28 juin  22:47 fileqsd
-rw-r--r--. 1 root root 41 28 juin  22:47 filegfd
-rw-r--r--. 1 root root 41 28 juin  22:47 fileeza
-rw-r--r--. 1 root root 41 28 juin  22:47 filebxc
[root@h2g2w tmp]# cat file???
! input file
a = 1
b = bxc
d = 789
! end
! input file
a = 1
b = eza
d = 789
! end
! input file
a = 1
b = gfd
d = 789
! end
! input file
a = 1
b = qsd
d = 789
! end
[root@h2g2w tmp]# 

Espero que você possa adaptar isso às suas necessidades.

    
por 28.06.2018 / 22:47
0

Com apenas bash: o arquivo é chamado "arquivo"

# slurp the whole file into a variable
contents=$(< file)

# find the value of b, using regular expression
# - with bash regex, the literal parts are quoted and the metachars are not
if [[ $contents =~ "b = "([0-9]+) ]]; then
    b_val=${BASH_REMATCH[1]}

    # create a printf-style format string
    template=${contents/b = $b_val/b = %d}

    # then, count down from the b value to 1, creating the new files
    for (( n = b_val; n >= 1; n-- )); do
        printf "$template\n" $n > "file.$n"
    done
fi

Então:

$ ls -lt
total 6220
-rw-rw-r-- 1 jackman jackman      39 Jun 28 17:46 file.1
-rw-rw-r-- 1 jackman jackman      39 Jun 28 17:46 file.2
-rw-rw-r-- 1 jackman jackman      39 Jun 28 17:46 file.3
-rw-rw-r-- 1 jackman jackman      39 Jun 28 17:46 file.4
-rw-rw-r-- 1 jackman jackman      39 Jun 28 17:46 file.5
-rw-rw-r-- 1 jackman jackman      39 Jun 28 17:46 file.6
-rw-rw-r-- 1 jackman jackman      39 Jun 28 17:35 file
...

$ grep ^b file{,.?}
file:b = 6
file.1:b = 1
file.2:b = 2
file.3:b = 3
file.4:b = 4
file.5:b = 5
file.6:b = 6
    
por 28.06.2018 / 23:45