为什么 flashplugin-installer 下载时会显示多行终端进度?

为什么 flashplugin-installer 下载时会显示多行终端进度?

我在多个 Ubuntu 版本中都遇到过这个问题。

为什么当我wget打开一个文件时它只需要一行就可以提供所有信息(例如时间、总空间、下载位数、百分比)

通过 flashplugin 安装程序下载 flashplugin 时,终端中的安装程序显示了很多行 - 为什么?

在此处输入图片描述

答案1

这是安装程序的设计。这些命令由 flashplugin 安装程序安装后脚本执行:

# setting wget options
:> wgetrc
echo "noclobber = off" >> wgetrc
echo "dir_prefix = ." >> wgetrc
echo "dirstruct = off" >> wgetrc
echo "verbose = on" >> wgetrc
echo "progress = dot:default" >> wgetrc

# downloading the plugin
echo "Downloading..."
rm -f $FILENAME
echo "Getting ${ADOBE_URL}"
WGETRC=wgetrc wget ${ADOBE_URL} \
|| fp_exit_with_error "download failed"
rm -f wgetrc
echo "Download done."

相关设置是progress = dot:default无法覆盖的。也许你可以为此提交一个愿望清单错误https://launchpad.net/ubuntu/+source/flashplugin-nonfree/+bugs

相关内容