Hello,
Firstly, Thanks everyone for all your help. I can see the successful completion of my project in couple of days..
I need to know how to put a status bar in Shell Script, something like this.
No_of_files=55
index=0
while [ $index -lt $No_of_files ]
do
echo -en "$index of $No_of_Files Completed"
index=$((index + 1))
done
Expected Result : 1 of 55 Completed 2 of 55 Completed
Every iteration, index should be replaced but not other characters.
Thanks Kiran