首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 操作系统 > UNIXLINUX >

linux date失去当前时间的毫秒

2012-12-19 
linux date得到当前时间的毫秒echo `expr \`date +%s%N\` / 1000000`-----------------------------------

linux date得到当前时间的毫秒

echo `expr \`date +%s%N\` / 1000000`

-----------------------------------------------------

#/bin/bash
declare startTime=`date +%s%N`;
echo `expr $startTime / 1000000`

?

-----------------------------

#/bin/bash

#test.sh
declare time_now=`expr \`date +%s%N\` / 1000000`;
echo 当前时间毫秒:$time_now;

declare time000n=`date -d \`date +%Y%m%d\` +%s%N`;

declare time_0=`expr $time000n / 1000000`;
echo 当前时间取0时0分0秒的毫秒数:$time_0

?

?

热点排行