Windows和 Linux下生成以当前时间命名文件的方法
程序员文章站
2022-04-10 18:49:41
windows bat批处理文件: 复制代码 代码如下: @echo off set time_hh=%time:~0,2% if /i %time_hh% lss 10...
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").txt
复制代码 代码如下:
@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").txt
上一篇: 精通批处理教程 批处理从入门到精通
下一篇: 批处理 进程端口查看