码迷,mamicode.com
首页 > Windows程序 > 详细

Windows 和 Linux 下生成以当前时间命名的文件

时间:2014-09-14 03:39:56      阅读:292      评论:0      收藏:0      [点我收藏+]

标签:blog   ar   文件   div   log   c   linux   时间   r   

 在 Windows、Linux 操作系统,分别利用BAT批处理文件和Shell脚本,生成类似“20110228_082905.txt”以“年月日_时分秒”命名的文件。

  Windows BAT批处理文件:
@echo off
set time_hh=%time:~0,2%
if /i %time_hh% LSS 10 (set time_hh=0%time:~1,1%)
set filename=%date:~,4%%date:~5,2%%date:~8,2%_%time_hh%%time:~3,2%%time:~6,2%
echo test >> %filename%.txt


  Linux Shell 脚本:
#!/bin/sh
echo test >> $(date -d "today" +"%Y%m%d_%H%M%S")

  

Windows 和 Linux 下生成以当前时间命名的文件

标签:blog   ar   文件   div   log   c   linux   时间   r   

原文地址:http://www.cnblogs.com/L-H-R-X-hehe/p/3970621.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!