在shell脚本中分配从文件读取的日期值并更新文件

时间:2018-07-24 19:55:13

标签: shell date variables

我必须通过从文件中读取将日期值分配给变量,并将其减去15分钟,然后使用当前日期再次更新文件。由于某种原因,我的外壳无法正常工作,并且每次我的Date_Start到现在为止都是15分钟(而不是文件时间)是15分钟。

start = `cat test.txt`

    Date_Start=`date -u --date="$start - 15 minutes" +"%Y-%m-%d %H:%M"`
    Date_End=`date -u +"%Y-%m-%d %H:%M"`

    destdir=/c/test.txt

    if [ -f "$destdir" ]
    then
        echo "$Date_End" > "$destdir"

    fi

0 个答案:

没有答案