We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 08aad1a commit 8a10446Copy full SHA for 8a10446
test/xref2/big_search_path.t/run.t
@@ -1,7 +1,9 @@
1
We create a lot of directories
2
3
- $ for ((i = 1; i <= 1000; i++)); do
4
- > mkdir -p d$i
+ $ i=1
+ > while [ $i -le 1000 ]; do
5
+ > mkdir -p d$i
6
+ > i=$((i + 1))
7
> done
8
9
$ echo "{0 Heading}" > p.mld
0 commit comments