[Shell Script] 파일이나 명령어 결과를 한줄씩 while문에서 처리하기
쉘 스크립트에서 파일이나 명령어의 결과를 while문에서 한줄 한줄 받아서 처리해보자.
환경
- Linux 기반 시스템
- Bash shell(/bin/bash)
방법 예제
명령어 결과를 한줄씩 처리
- Pipeline을 이용
ls ./Test | while read line
do
echo $line
done
ls /tmp | while read line
do
echo $line
done
파일을 한줄씩 읽어서 처리하기
- Redirection을 이용
while read line
do
echo $line
done < test.txt
- Pipeline을 이용
cat test.txt | while read line
do
echo $line
done