要从服务器下载SOFA统计信息,请使用wget命令:
wget -c http://sourceforge.net/projects/sofastatistics/files/latest/download?source=dlp
在这种情况下,下载文件的文件名是download?source=files
。如果我--output-document
在命令中添加选项,则将输出文件重命名为sofastatistics-latest.deb
,则dpkg软件包无法识别下载文件的格式。
dpkg-deb: error: `sofastatistics-latest.deb' is not a debian format archive
如何使用wget正确重命名下载的文件?
更新- 15年1月8日
使用提供的链接,下载的文件将始终是* .tar.gz。要获得真实姓名,只需添加以下--content-disposition
选项(感谢@ 6EQUJ5!):
wget --content-disposition http://sourceforge.net/projects/sofastatistics/files/latest/download?source=dlp
但是我需要一个* .deb文件,所以这里是@creaktive,我不得不搜索* .deb文件链接。
感谢所有的答案!
file
说?