#!/bin/bash
for i in {1..5}
do
echo "Bash Brace Expansion: "$i;
done
for i in $(seq 1 0.5 5)
echo "Sequence: "$i;