关于bash:在命令行上获取当前年份

Get the current year on the commandline

本问题已经有最佳答案,请猛点这里访问。

使用wget,我需要下载一个URL包含年份的文件。如何嵌入当前的4位数年份(在运行命令时,例如2015年)?例如,命令currentyear的内容是什么

1
wget"http://example.com/data-$(currentyear).txt"

如果我需要两位数的年份(例如,2015年为15),那么相应的命令是什么?


您可以简单地使用date命令作为date +%Y命令:

1
wget"http://example.com/data-$(date +%Y).txt"

如果您需要2位数的年份,您只需使用date +%Y