Home
Blog
All tags
Pieces of code
Bioinfo trainings
Machine learning
Online books
Coursera
Teaching
Contact
CV
View on GitHub
Bash - read lines from file
01 Jul 2020
cat ./SAMPLES.txt| while read SAMPLE do mkdir ${OUTDIR}/${SAMPLE} done
[
bash
loop
]