码迷,mamicode.com
首页 > 其他好文 > 详细

touch的基本用法

时间:2018-06-09 22:07:52      阅读:277      评论:0      收藏:0      [点我收藏+]

标签:touch   指定   改变   type   txt   定时   当前时间   访问   一个   

touch的基本功能是改变文件的时间戳,以下是三种常用用法:

1、创建一个空文件

以当前时间为时间戳创建一个空文件。
$ touch touch.txt //touch.txt不存在

2、更改文件时间戳

将指定的已有文件的修改时间和访问时间更改为当前时间,或指定时间。
$ touch test.txt //test.txt已存在

$touch -d ‘20141229 12:00:00‘ test.txt

3、批量更改文件时间

$ find . -name "*" -type f | xargs touch -d ‘20151229 14:22:00‘ 

touch的基本用法

标签:touch   指定   改变   type   txt   定时   当前时间   访问   一个   

原文地址:https://www.cnblogs.com/pandachen/p/9160844.html

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