#연구/#Tech

Bash를 이용해서 파일 읽기 #Reading Lines in Bash #Bash while을 이용해서 파일 읽기 #파일 읽기 Bash Script

every7hing 2020. 12. 21. 22:56
반응형

 

Bash를 이용해서 파일 읽기 

#Reading Lines in Bash 

#Bash while을 이용해서 파일 읽기

 

Bash Script를 이용해서 파일을 읽어오는 방법을 알아 보겠습니다.

 

 

Reading Lines

cat file.txt | while read line; do
    echo $line
done

 

 

반응형