티스토리 뷰

공부

[sh] txt file for loop (while)

승가비 2023. 1. 5. 02:08
728x90
while read p; do
  echo "$p"
done <peptides.txt

while read a b; do
  echo "$a $b"
done <peptides.txt

https://stackoverflow.com/questions/1521462/looping-through-the-content-of-a-file-in-bash

 

Looping through the content of a file in Bash

How do I iterate through each line of a text file with Bash? With this script: echo "Start!" for p in (peptides.txt) do echo "${p}" done I get this output on the screen: Start! ./runPep.sh:...

stackoverflow.com

https://yjwang.tistory.com/20

 

Bash while-read 구문 (변수 2가지 이상일 때 loop문 사용)

Bash에서 while loop에 read 구분을 같이 사용하면 변위가 두 가지 이상 필요할 때 유용하게 사용할 수 있다. ==> test2.sh test.sh

yjwang.tistory.com

 

728x90
댓글