Commit 0ad9d401 authored by Shanelle Valencia's avatar Shanelle Valencia

Add iteration file

parent d84d14f0
#!/bin/bash
for i in {1..50}
do
if [[ $(expr $i % 2) != 0 ]]
then
echo "Number is : $i"
fi
done
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment