Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想显示wget使用对话框(gauge)的进度。
wget
gauge
我在这个网站上找到了一个解决方案,但它没有显示 100%。90% 后,对话框冻结/停止,代码退出。
有什么方法可以显示 wget 的对话框仪表吗?
URL="http://upload.wikimedia.org/wikipedia/commons/4/4e/Pleiades_large.jpg" wget "$URL" 2>&1 | \ stdbuf -o0 awk '/[.] +[0-9][0-9]?[0-9]?%/ { print substr($0,63,3) }' | \ dialog --gauge "Download Test" 10 100