tft每日頭條

 > 科技

 > linux下将時間轉換成時間戳函數

linux下将時間轉換成時間戳函數

科技 更新时间:2025-01-27 03:17:24

日常工作中經常需要查看當前時間戳或者轉換時間戳到日期,為此寫了一個小工具,方便轉換,分享給小夥伴,喜歡的請關注并點贊!

#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下将時間轉換成時間戳函數(macos下好用的時間戳轉換小工具)1

,

更多精彩资讯请关注tft每日頭條,我们将持续为您更新最新资讯!

查看全部

相关科技资讯推荐

热门科技资讯推荐

网友关注

Copyright 2023-2025 - www.tftnews.com All Rights Reserved