如何让wget包含日期和时间时间戳记在网页索引文件的工作本地副本中

时间:2014-11-05 21:56:24

标签: windows wget

我的报告需要每天下载。我想每天下载一次此文件,并将该文件以report_ [date] [time] .html

结尾。

示例代码

wget -k -p -O C:\Users\[user]\Desktop\New\report_%date%%time%.html www.report.com

我尝试了多种组合,例如

report_date +%Y-%m-%d-%H%M%S

report_yyyymmdd_hhnnss
没有任何运气。

是否可以在输出文件中为wget提供日期/时间戳?

2 个答案:

答案 0 :(得分:0)

这将为您提供 YYYY-MM-DD.png

wget --output-document=%DATE:~-4%-%DATE:~4,2%-%DATE:~7,2%.png www.webpage.com

答案 1 :(得分:0)

wget --output-document=`date +"%Y-%m-%d"`.file 
www.report.com/reports/report.file