1. 개요
“this is apple” 앞의 문장을 for문 입력으로 받으면 실행 변수는 다음과 같다
this / is / apple
그런데 ‘this is apple’을 입력으로 받아서 반복문 안에서 가지고 놀고싶다면?
2. command
while read input_array do echo "$input_array" done < <(echo "$input_lines")
* 주의! “done < <()” 이부분을 띄어쓰기를 변경하고 싶겠지만 변경하면 인식 안 됨!