dylanaraps / pure-bash-bible

📖 A collection of pure bash alternatives to external processes.
MIT License
36.41k stars 3.27k forks source link

Update README.md #143

Closed aes256ctr closed 8 months ago

aes256ctr commented 9 months ago

for((;i++<10;)){ echo "$i";} ---> for((i=0;i++<10;)){ echo "$i";}