Skip to content

Commit 2dcd073

Browse files
author
shubham_24214
committed
count odd numbers from 1 to 99
1 parent 1f42a69 commit 2dcd073

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

count_odd.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#! /bin/bash/ -v
2+
3+
for ((X=1; X<=99; X=X+2))
4+
do
5+
echo "$X"
6+
done

0 commit comments

Comments
 (0)