首先,感谢大家的帮助。我可以在几天内看到我的项目成功完成..
我需要知道如何在 Shell Script 中放置一个状态栏,就像这样。
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
预期结果 : 1 of 55 已完成 2 of 55 已完成
每次迭代,索引都应该被替换,而不是其他字符。
谢谢基兰