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.
我正在尝试获取具有可变年、月和日但特定小时的日期。
让我自己解释一下。我有一个名为$date的变量,使用下一种格式
date=$(date +%Y%m%d)
这给了我 20130814 (今天)。就像我想要那个变量一样
但我需要另一个变量,我们称它为$date1,它会有类似$date的东西,但有一个特定的时间。我的意思是,以上面的例子为例,2013081405。我需要每天将05添加到$date,这意味着明天我将拥有 2013081505 等等
其bash语法为:
bash
date1="$(date +%Y%m%d)05"
为什么你不能尝试
$date1 = $date."05";