Update bash.md

This commit is contained in:
Rico Sta. Cruz 2017-10-26 14:13:37 +08:00 committed by GitHub
parent 64cdfec5e7
commit 041932cda3
1 changed files with 3 additions and 2 deletions

View File

@ -209,14 +209,15 @@ for i in {1..5}; do
echo "Welcome $i"
done
```
#### With step size
```bash
# Specifies range step size
for i in {5..50..5}; do
echo "Welcome $i"
done
```
### Reading lines
```bash