Eu quero script que irá abrir os dados do arquivo de texto e escrever consulta de atualização para o arquivo e salvar no arquivo SQL que será executado através do cron. Eu preparei o comando, mas está escrevendo a consulta de atualização no RPAD. Abaixo, estão os dados de amostra & amp; comando:
text file data : cat file.txt
123456789
234567891
345678912
456789123
Comando:
cat file.txt | campo do conjunto de tabelas / $ / update do sed onde file_number = "file.txt" / '& gt; file1.sql
SAÍDA atual:
123456789update table set field where file_number=
234567891update table set field where file_number=
345678912update table set field where file_number=
456789123update table set field where file_number=
Saída esperada:
update table set field where file_number='123456789';
update table set field where file_number='234567891';
update table set field where file_number='345678912';
update table set field where file_number='456789123';