Bash - read lines from file

01 Jul 2020

cat ./SAMPLES.txt| while read SAMPLE
do
    mkdir ${OUTDIR}/${SAMPLE}
done
[ bash  loop  ]