touch [選項(xiàng)] … 文件 …
說明:將每個(gè)文件的訪問時(shí)間和修改時(shí)間改為當(dāng)前時(shí)間。如果文件不存在則會(huì)創(chuàng)建空文件linux命令,除非使用-c或-h選項(xiàng)。如果文件名為”-”則特殊處理,更改與標(biāo)準(zhǔn)輸出相關(guān)的文件的訪問時(shí)間。
(1).選項(xiàng)
-a 只更改訪問時(shí)間 -c,--no-create 不創(chuàng)建任何文件 -d,--date=字符串 使用指定字符串表示時(shí)間而非當(dāng)前時(shí)間 -f 忽略 -h,--no-dereference 只影響符號(hào)鏈接本身,而非符號(hào)鏈接所指示的目的地(當(dāng)系統(tǒng)支持更改符號(hào)鏈接的所有者時(shí),此選項(xiàng)才有用) -m 只更改修改時(shí)間 -r,--reference=文件 使用指定文件的時(shí)間屬性而非當(dāng)前時(shí)間 -t STAMP 使用[[CC(世紀(jì))]YY]MMDDhhmm[.ss]格式的時(shí)間而非當(dāng)前時(shí)間 --time=WORD使用WORD指定的時(shí)間:access/atime/use都等于-a選項(xiàng)的效果,而modify/mtime等于-m選項(xiàng)的效果
補(bǔ)充:文件的三種時(shí)間
[xf@xuexi ~]$ ll /etc/passwd //只能查看文件的修改時(shí)間 -rw-r--r--. 1 root root 2310 12月 16 13:52 /etc/passwd [xf@xuexi ~]$ stat /etc/passwd //查看文件屬性,其中包含文件時(shí)間屬性 文件:"/etc/passwd" 大。2310 塊:8 IO 塊:4096 普通文件 設(shè)備:802h/2050d Inode:8988703 硬鏈接:1 權(quán)限:(0644/-rw-r--r--) Uid:( 0/ root) Gid:( 0/ root) 環(huán)境:system_u:object_r:passwd_file_t:s0 最近訪問:2018-12-23 15:19:41.520000727 +0800 最近更改:2018-12-16 13:52:20.673021532 +0800 最近改動(dòng):2018-12-16 13:52:20.675021532 +0800 創(chuàng)建時(shí)間:-
訪問時(shí)間:atime查看內(nèi)容,例cat a.xtx
修改時(shí)間:mtime修改內(nèi)容,例vim a.txt
改變時(shí)間:ctime修改文件屬性linux命令,例如chmod +x a.sh
注意:使用touch修改的時(shí)間只有訪問時(shí)間和修改時(shí)間,不涉及改變時(shí)間
(2).實(shí)例
用touch創(chuàng)建文件
[xf@xuexi ~]$ mkdir newDir [xf@xuexi ~]$ cd newDir/ [xf@xuexi newDir]$ ll 總用量 0 [xf@xuexi newDir]$ touch touch_test_file //在當(dāng)前目錄下創(chuàng)建文件 [xf@xuexi newDir]$ ll 總用量 0 -rw-rw-r--. 1 xf xf 0 12月 23 20:17 touch_test_file [xf@xuexi newDir]$ mkdir mydir [xf@xuexi newDir]$ touch mydir/touch_test_file //在指定目錄下創(chuàng)建文件 [xf@xuexi newDir]$ ls -l mydir/ 總用量 0 -rw-rw-r--. 1 xf xf 0 12月 23 20:18 touch_test_file [xf@xuexi newDir]$ touch a.txt //可以指定文件格式 [xf@xuexi newDir]$ touch file1 file2 //一次可以創(chuàng)建多個(gè)文件 [xf@xuexi newDir]$ touch file{3..5} //創(chuàng)建file3到file5的文件 [xf@xuexi newDir]$ ls a.txt file1 file2 file3 file4 file5 mydir touch_test_file
上一個(gè)教程:linux基本命令vi和vim使用詳細(xì)介紹
下一個(gè)教程:Linux命令(自己工作常用)