Home
Blog
All tags
Pieces of code
Bioinfo trainings
Machine learning
Online books
Coursera
Teaching
Contact
CV
View on GitHub
Bash - interpolate between 2 numbers for for-loop
01 Jul 2020
Interpolate between number range for for-loop
for chromo in ( "chr"{1..22} ); do echo $chromo; done
[
bash
for
]