linux下将时间转换成时间戳函数(macos下好用的时间戳转换小工具)
日常工作中经常需要查看当前时间戳或者转换时间戳到日期,为此写了一个小工具,方便转换,分享给小伙伴,喜欢的请关注并点赞!
#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
,
免责声明:本文仅代表文章作者的个人观点,与本站无关。其原创性、真实性以及文中陈述文字和内容未经本站证实,对本文以及其中全部或者部分内容文字的真实性、完整性和原创性本站不作任何保证或承诺,请读者仅作参考,并自行核实相关内容。文章投诉邮箱:anhduc.ph@yahoo.com