在shell腳本中,可以使用date
命令來獲取當前的年月日。以下是獲取當前年月日的幾種常見方式:
#!/bin/bash
now=$(date +%Y-%m-%d)
echo "當前日期是: $now"
#!/bin/bash
now=$(date +%Y-%m-%d)
echo "當前日期是: $now" > date.txt
#!/bin/bash
year=$(date +%Y)
month=$(date +%m)
day=$(date +%d)
echo "當前日期是: $year年$month月$day日"
#!/bin/bash
year=$(date +%Y)
month=$(date +%m)
day=$(date +%d)
echo "當前日期是: $year年$month月$day日" > date.txt
以上是幾種常見的獲取當前年月日的方法,你可以根據自己的需求選擇適合的方式。