1
0
mirror of https://github.com/Snailclimb/JavaGuide synced 2025-06-25 02:27:10 +08:00

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

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;
```