中文字幕亚洲第一精品|精品国产免费一区二区|久久婷婷五月六月综合版|中文字幕熟妇久久久人妻|久久综合精品国产一区无码|国产成人精品永久免费视频|午夜亚洲国产精品理论片a级|久久精品一区二区三区无码护土

 訪問手機版  

Linux常用命令|Linux培訓(xùn)學(xué)習(xí)|考試認證|工資待遇與招聘,認準超級網(wǎng)工!

招聘|合作 登陸|注冊

網(wǎng)絡(luò)工程師培訓(xùn)

當前位置:網(wǎng)絡(luò)工程師 > 技術(shù)課程 > linux > 熱點關(guān)注 > linux常用命令

Linux常用基本命令( touch )

時間:2019-06-15

常用linux命令大全_linux常用命令_常用dos命令大全

Linux常用基本命令( touch )

touch命令:

作用:創(chuàng)建空文件,或者改變文件的時間戳屬性

格式: touch [option] [file]

linux常用命令_常用linux命令大全_常用dos命令大全

1,同時創(chuàng)建一個或者多個空文件

ghostwu@dev:~/linux/mkdir$ ls
ghostwu@dev:~/linux/mkdir$ touch a.txt
ghostwu@dev:~/linux/mkdir$ ls
a.txt
ghostwu@dev:~/linux/mkdir$ touch b.txt c.txt
ghostwu@dev:~/linux/mkdir$ ls
a.txt  b.txt  c.txt
ghostwu@dev:~/linux/mkdir$ touch {1..5}.txt
ghostwu@dev:~/linux/mkdir$ ls
1.txt  2.txt  3.txt  4.txt  5.txt  a.txt  b.txt  c.txt

2,創(chuàng)建文件,并用stat查看文件的屬性狀態(tài)信息

ghostwu@dev:~/linux/mkdir$ touch ghostwu.txt
ghostwu@dev:~/linux/mkdir$ stat ghostwu.txt 
  File: 'ghostwu.txt'
  Size: 0             Blocks: 0          IO Block: 4096   regular empty file
Device: 807h/2055d    Inode: 9569451     Links: 1
Access: (0664/-rw-rw-r--)  Uid: ( 1000/ ghostwu)   Gid: ( 1000/ ghostwu)
Access: 2018-05-01 17:25:16.439856937 +0800
Modify: 2018-05-01 17:25:16.439856937 +0800
Change: 2018-05-01 17:25:16.439856937 +0800
 Birth: -

常用linux命令大全_常用dos命令大全_linux常用命令

最后有3個時間

Access time:最后訪問時間,查看文件的內(nèi)容時,這個時間會改變linux常用命令,使用cat命令查看文件時,可以看出Access time已經(jīng)變了

ghostwu@dev:~/linux/mkdir$ stat ghostwu.txt 
  File: 'ghostwu.txt'
  Size: 0             Blocks: 0          IO Block: 4096   regular empty file
Device: 807h/2055d    Inode: 9569451     Links: 1
Access: (0664/-rw-rw-r--)  Uid: ( 1000/ ghostwu)   Gid: ( 1000/ ghostwu)
Access: 2018-05-01 17:25:16.439856937 +0800
Modify: 2018-05-01 17:25:16.439856937 +0800
Change: 2018-05-01 17:25:16.439856937 +0800
 Birth: -
ghostwu@dev:~/linux/mkdir$ cat ghostwu.txt 
ghostwu@dev:~/linux/mkdir$ stat ghostwu.txt 
  File: 'ghostwu.txt'
  Size: 0             Blocks: 0          IO Block: 4096   regular empty file
Device: 807h/2055d    Inode: 9569451     Links: 1
Access: (0664/-rw-rw-r--)  Uid: ( 1000/ ghostwu)   Gid: ( 1000/ ghostwu)
Access: 2018-05-01 17:27:51.887215139 +0800
Modify: 2018-05-01 17:25:16.439856937 +0800
Change: 2018-05-01 17:25:16.439856937 +0800
 Birth: -