본문 바로가기

linux(리눅스)

for loop 텍스트 파일에서 불러오기

728x90
반응형

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


#!/bin/bash
echo Start
for l in $(cat SRR_Acc_List.txt) ; do
    echo $l
done

728x90
반응형

'linux(리눅스)' 카테고리의 다른 글

연구실 우분투 셋팅  (0) 2018.06.03
bc 간단한 계산용 프로그램  (0) 2017.11.29
igv linux  (0) 2017.11.05
find 명령어  (0) 2017.10.24
zip 기능들  (0) 2017.09.27