리다이렉션
-
[Shell Script] ssh remote command not working well after read lineSW/Shell Script 2020. 1. 18. 10:16
파일을 읽고 그 내용을 ssh로 원격 명령어를 원격에서 내용을 리컬시브하게 출력하는 프로그램이다. Input.txt에는 보낼 단어들이 한줄로 나열 ex) 디비 네트워크 오에스 언어 send_msg_ssh.sh에는 받은 인자(input.txt 단어)를 ssh로 다른 서버에 보낸다. Input파일을 한줄씩 읽어와 send_msg_ssh.sh에 인자로 보내면 send_msg_ssh.sh에서는 다른 서버에 보낸다. 서버에서는 받은 단어 출력. 결과는 4줄다 보낼줄 알았는데 몇개만 받고 test_recursive함수를 끝났다. #!/bin/bash TEST=input.txt test_recursive() { while read -r LINE || [[ -n "$LINE" ]]; do echo $LINE ./sen..