Home >Database >Mysql Tutorial >touch (修改档案时间与建置新文件)

touch (修改档案时间与建置新文件)

WBOY
WBOYOriginal
2016-06-07 15:30:451122browse

每个 档案 在 linux 底下都会记录三个主要的变动 时间 , 那么三个 时间 是哪三个呢? modification time (mtime):当该 档案 的『内容数据』变更时,就会更新这个 时间 ! 内容数据指的是 档案 的内容,而不是 档案 的属性! status time (ctime):当该 档

每个档案在 linux 底下都会记录三个主要的变动时间, 那么三个时间是哪三个呢?

modification time (mtime):当该档案的『内容数据』变更时,就会更新这个时间! 内容数据指的是档案的内容,而不是档案的属性!

status time (ctime):当该档案的『状态 (status)』改变时,就会更新这个时间,举例来说, 像是权限与属性被更改了,都会更新这个时间
access time (atime):当『该档案的内容被取用』时,就会更新这个读取时间 (access)。 举例来说,我们使用 cat 去读取 ~/.bashrc ,就会更新 atime 了。

1.修改档案时间
    档案时间是很重要的,因为,如果档案时间误判的话,可能会造成某些程序无法顺利的运作~ OK!那么万一我发现了一个档案来自未来(嘿嘿!不要怀疑!很多时候会有这个问题的!这个我们在安装的时候, 提到的 GMT 时间就是那个意思啦~),那该如何让该档案时间变成『现在』的时刻呢? 很简单啊!就用『touch』这个指令即可!

touch [-acdmt] 档案
参数:
-a :仅修订 access time;
-c :仅修改时间,而不建立档案
-d :后面可以接日期,也可以使用 --date="日期或时间"
-m :仅修改 mtime ;
-t :后面可以接时间,格式为[YYMMDDhhmm]

2.建立空文档
touch filename

touch 这个指令最常被使用的情况是:
建立一个空的档案
将某个档案日期修订为目前 (mtime 与 atime)。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:access的分页查询效率问题Next article:Oracle 11g ORA