C-like for loop syntax for ksh93/bash/zsh
for
((i
=
1
; i
<=
20
; i
++
))
do
# Unix command here #
echo
"
$i
"
done
Print
Fullscreen
Presentation