introduction to bash shell script Posted on 2018-06-28 | In tech Recently, I found that bash script is very useful to perform some tasks. Thus, I write a summary of it. ResourcesThere’s a tutorial. Simple Example12345#!/bin/bashfor i in {1..400}; do echo item: $idone 12345#!/bin/bashfor ((i=1;i<=100;i++)); do echo $idone