linux shell 脚本程序:将时间赋给变量

#!/bin/bash


curTime=$(date "+%H%M%S")  #将时间  时 分 秒 赋给变量curTime,注意 date 和 双引号之间有空格

curDate=$(date "+%Y%m%d")   #将时间  年 月 日 赋给变量curDate

你可能感兴趣的:(linux,shell,脚本)