日期:2014-05-16 浏览次数:20720 次
本文链接:http://codingstandards.iteye.com/blog/781916 ?? (转载请注明出处)
touch命令经常用来创建空文件或者更新文件时间。创建空文件的目的通常是作为程序运行的标志,当程序执行结束前又将该文件删除。而更新文件时间通常是为了让某些软件能够正常执行。
-t <time> 用于指定时间。格式可以是MMDDhhmm或者yyyyMMDDhhmm。
-r <file> 设置与file相同的时间。
[root@jfht ~]# ls -l new.txt
ls: new.txt: 没有那个文件或目录
[root@jfht ~]# touch new.txt
[root@jfht ~]# ls -l new.txt
-rw-r--r-- 1 root root 0 10-11 22:40 new.txt
[root@jfht ~]#
[root@jfht ~]# ls -l new.txt
-rw-r--r-- 1 root root 0 10-11 22:40 new.txt
[root@jfht ~]# touch new.txt
[root@jfht ~]# ls -l new.txt
-rw-r--r-- 1 root root 0 10-11 22:41 new.txt
?
[root@jfht ~]# date
2010年 10月 11日 星期一 22:42:54 CST
[root@jfht ~]# touch -t 10112200 new.txt
???? <=== 格式 MMDDhhmm
[root@jfht ~]# ls -l new.txt
-rw-r--r-- 1 root root 0 10-11 22:00 new.txt
[root@jfht ~]# touch -t 200910112200 new.txt?
?????? <=== 格式 yyyyMMDDhhmm
??????????????????????????
[root@jfht ~]# ls -l new.txt
-rw-r--r-- 1 root root 0 2009-10-11 new.txt
[root@jfht ~]#
?
[root@jfht ~]# ls -l new.txt
-rw-r--r-- 1 root root 0 2009-10-11 new.txt
[root@jfht ~]#
[root@jfht ~]#
[root@jfht ~]# ls -l /etc/passwd
-rw-r--r-- 1 root root 1606 07-05 15:46 /etc/passwd
[root@jfht ~]# touch -r /etc/passwd new.txt
[root@jfht ~]# ls -l new.txt
-rw-r--r-- 1 root root 0 07-05 15:46 new.txt
[root@jfht ~]#
[root@jfht ~]# stat new.txt
? File: “new.txt”
? Size: 0?????????????? Blocks: 8????????? IO Block: 4096?? 一般空文件
Device: fd00h/64768d??? Inode: 194805821?? Links: 1
Access: (0644/-rw-r--r--)? Uid: (??? 0/??? root)?? Gid: (??? 0/??? root)
Access: 2010-10-11 22:49:17.000000000 +0800
Modify: 2010-07-05 15:46:46.000000000 +0800
Change: 2010-10-11 22:49:44.000000000 +0800
[root@jfht ~]# stat /etc/passwd
? File: “/etc/passwd”
? Size: 1606??????????? Blocks: 16???????? IO Block: 4096?? 一般文件
Device: fd00h/64768d??? Inode: 238127091?? Links: 1
Access: (0644/-rw-r--r--)? Uid: (??? 0/??? root)?? Gid: (??? 0/??? root)
Access: 2010-10-11 22:53:01.000000000 +0800
Modify: 2010-07-05 15:46:46.000000000 +0800
Change: 2010-07-05 15:46:46.000000000 +0800
从上面看出,touch设置的时间是Modify time。
?
文件 touch_5.sh
#!/bin/sh F=touch_5.run if [ -e $F ]; then echo "$0 is running..." exit 1 fi touch $F echo "I'm doing..." sleep 30 rm -f $F
?
[root@jfht ~]# cat touch_5.sh
#!/bin/sh
F=touch_5.run
if [ -e $F ]; then
??? echo "$0 is running..."
??? exit 1
fi
touch $F
echo "I'm doing..."
sleep 30
rm -f $F
[root@jfht ~]#