Horje
for i in range bash Code Example
for i in range bash
#Just use command seq to iterate a range from start to end
END=10
for i in $(seq 1 $END); do echo $i; done
bash for i in range
# Brace Expansion
for i in {1..10}; do echo $i; done
Source: www.gnu.org




Shell

Related
git get address Code Example git get address Code Example
samtools convert sam to bam Code Example samtools convert sam to bam Code Example
git show remote url Code Example git show remote url Code Example
npm WARN deprecated tar@2.2.2: This version of tar is no longer supported, and will not receive security updates. Please upgrade asap. Code Example npm WARN deprecated [email protected]: This version of tar is no longer supported, and will not receive security updates. Please upgrade asap. Code Example
how to extract tgz file in linux Code Example how to extract tgz file in linux Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
16