# dmesg
[ 18.204448] bluetooth: rfcomm socket layer initialized
[ 18.204452] bluetooth: rfcomm ver 1.11
dmesg 日志中的“时间”(18.204452) 表示的是系统启动到事件发生的时间差,这个值可以转换成时间戳:
unix_time=`echo "$(date %s) - $(cat /proc/uptime | cut -f 1 -d' ') 18.204452 " | bc`
echo ${unix_time}
注:/proc/uptime 第一列表示的是系统开机时间,根据这个值和当前时间可以获取到 dmesg 日志中事件发生的时间
date -d "@${unix_time}" ' %y-%m-%d %h:%m:%s'
#!/bin/bash
if [ $# -ne 1 ];then
echo "input an dmesg time"
exit 1
fi
unix_time=`echo "$(date %s) - $(cat /proc/uptime | cut -f 1 -d' ') ${1}" | bc`
echo ${unix_time}
date -d "@${unix_time}" ' %y-%m-%d %h:%m:%s'
# ./test.sh 18.204452
1538100496.004452
2018-09-28 10:08:16