Merge branch 'pr-1019'

This commit is contained in:
Rico Sta. Cruz 2019-03-23 22:13:19 +08:00
commit 15ec89d069
No known key found for this signature in database
GPG Key ID: CAAD38AE2962619A
1 changed files with 8 additions and 0 deletions

View File

@ -220,6 +220,14 @@ for i in /etc/rc.*; do
done
```
### C-like for loop
```bash
for ((i = 0 ; i < 100 ; i++)); do
echo $i
done
```
### Ranges
```bash