I am trying to do run below command in my UNIX console:
for i in {1..5}; do echo $i; done
However, the result I am getting is below
{1..5}
Could someone suggest what's wrong with this?
I am trying to do run below command in my UNIX console:
for i in {1..5}; do echo $i; done
However, the result I am getting is below
{1..5}
Could someone suggest what's wrong with this?