欢迎来到电脑知识学习网,专业的电脑知识大全学习平台!

手机版

linux时间戳转换(linux时间戳转换成时间命令)

网络知识 发布时间:2022-01-08 14:06:43

日常工作中经常需要查看当前时间戳或者转换时间戳到日期,为此写了一个小工具,方便转换,分享给小伙伴!

#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <time.h>

int main(int argc,char *argv[]) {
    time_t newtime;

    if (2 == argc) {
        newtime = strtol(argv[1],NULL,10);
        char szBuff[30];
        strftime(szBuff, sizeof(szBuff), "%Y/%m/%d %X", localtime(&newtime));
        printf("%s\n",szBuff);
    }
    else {
        time(&newtime);
        printf("%ld\n",newtime);
    }

    exit(0);
}

编译

gcc -Wall -o showtime showtime.c

使用

chmod +x showtime
cp showtime /usr/local/bin/

showtime
showtime 1624964738

linux时间戳转换(linux时间戳转换成时间命令)(1)

责任编辑:电脑知识学习网

网络知识