반응형
Bash를 이용해서 파일 읽기
#Reading Lines in Bash
#Bash while을 이용해서 파일 읽기
Bash Script를 이용해서 파일을 읽어오는 방법을 알아 보겠습니다.
Reading Lines
cat file.txt | while read line; do
echo $line
done
반응형
Bash를 이용해서 파일 읽기
#Reading Lines in Bash
#Bash while을 이용해서 파일 읽기
Bash Script를 이용해서 파일을 읽어오는 방법을 알아 보겠습니다.
Reading Lines
cat file.txt | while read line; do
echo $line
done