텍스트 파일 데이터를 열고 해당 파일에 업데이트 쿼리를 작성하고 cron을 통해 실행될 SQL 파일에 저장하는 스크립트를 원합니다. 명령을 준비했지만 RPAD에 업데이트 쿼리를 작성하는 방법은 다음과 같습니다. 샘플 데이터 및 명령은 다음과 같습니다.
text file data : cat file.txt
123456789
234567891
345678912
456789123
명령:
고양이 file.txt | sed 's / $ / update table set field where file_number = "file.txt"/'> file1.sql
현재 출력 :
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=
예상 출력 :
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';