请问在LINUX当中,如何将当前日期时间写入txt文件中 以及 如何用当前日期重命名txt文件。麻烦讲的细一些
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了请问在LINUX当中,如何将当前日期时间写入txt文件中 以及 如何用当前日期重命名txt文件。麻烦讲的细一些相关的知识,希望对你有一定的参考价值。
将当前日期写入txt文件:date > a.txt 执行完命令后,会在当前目录生成a.txt文件,里面就有当前日期了用当前日期重命令文件:touch `date +%F`.txt 就会生成一个2013-04-09.txt文件 参考技术A 执行下面的语句就可以
MYDATE=$(date +%Y%m%d) ; echo "$MYDATE" > filename$MYDATE.txt
运用date命令格式化显示日期赋予变量MYDATE,然后 echo 变量的内容,再存到 filename$MYDATE.txt 文件里。
然后看有没有新的文件建立:
ls filename*
然后显示文件内容:
cat filename*追问
怎么执行你写的那个语句啊..是建个sh文件然后执行么
追答复制粘贴到shell的提示符后,回车。即
xj@xjSSUNG:~$ MYDATE=$(date +%Y%m%d) ; echo "$MYDATE" > filename$MYDATE.txt
请问在C语言里怎么获取当前时间和日期(精确到毫秒)?
先申明下,这个是我转百度知道的,经常BAIDU一下,就OK了#include <stdio.h>
#include <time.h>
void main ()
time_t rawtime;
struct tm * timeinfo;
time ( &rawtime );
timeinfo = localtime ( &rawtime );
printf ( "\007The current date/time is: %s", asctime (timeinfo) );
exit(0);
=================
#include <time.h> -- 必须的时间函数头文件
time_t -- 时间类型(time.h 定义)
struct tm -- 时间结构,time.h 定义如下:
int tm_sec;
int tm_min;
int tm_hour;
int tm_mday;
int tm_mon;
int tm_year;
int tm_wday;
int tm_yday;
int tm_isdst;
time ( &rawtime ); -- 获取时间,以秒计,从1970年1月一日起算,存于rawtime
localtime ( &rawtime ); -- 转为当地时间,tm 时间结构
asctime ()-- 转为标准ASCII时间格式:
星期 月 日 时:分:秒 年
=========================================
你要的格式可这样输出:
printf ( "%4d-%02d-%02d %02d:%02d:%02d\n",1900+timeinfo->tm_year, 1+timeinfo->tm_mon,
timeinfo->tm_mday,timeinfo->tm_hour,timeinfo->tm_min,timeinfo->tm_sec);
就是直接打印tm,tm_year 从1900年计算,所以要加1900,
月tm_mon,从0计算,所以要加1
其它你一目了然啦。 参考技术A #include <windows.h>
int main()
SYSTEMTIME lpsystime;
GetLocalTime(&lpsystime);
printf("%u:%u:%u:%u:%u:%u:%u:%u\n",lpsystime.wYear,lpsystime.wMonth,
lpsystime.wDayOfWeek,lpsystime.wDay,lpsystime.wHour,lpsystime.wMinute,
lpsystime.wSecond,lpsystime.wMilliseconds);
getchar();
return 0;
参考技术B clock_t t1,t1;
t1=clock();
..
t2=clock();
(t2-t1)/18.2的结果是秒,不过这是小数,可以得到毫秒级 参考技术C 你试试下面的程序:
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
int main()
clock_t start, finish;
double elapsed_time;
start=clock();
//do sonething ...
finish=clock();
elapsed_time = finish-start;
我在VC++ 6.0下运行,可以得到以毫秒为单位的计时
以上是关于请问在LINUX当中,如何将当前日期时间写入txt文件中 以及 如何用当前日期重命名txt文件。麻烦讲的细一些的主要内容,如果未能解决你的问题,请参考以下文章
Linux中 在当前时间后一分钟将日历重定向保存到cal.txt 怎样用命令写?谢谢