실행 결과를 바로 읽어서 한 줄씩 처리 하기 #!/bin/bash find ./ -name config.log | while read file_name; do echo "$file_name " && tail -n 1 $file_name done bash 세부 명령 read - 표준 입력(파이프라인 입력 또는 키보드 입력)에서 한 줄의 내용씩 읽어 들이는 명령어이다. while - 반복문 find - 검색 명령 Option 만들기 #!/bin/bash # Bash Menu Script Example PS3='Please enter your choice: ' options=("Option 1" "Option 2" "Option 3" "Quit") select opt in "${options[@]}" do c..