Update shell-intro.md

This commit is contained in:
paigeman 2023-06-28 15:36:54 +08:00 committed by GitHub
parent 4a924c7d89
commit a843706890
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -406,7 +406,8 @@ done
```shell
#!/bin/bash
for((i=1;i<=5;i++));do
length=5
for((i=1;i<=length;i++));do
echo $i;
done;
```