自拍偷在线精品自拍偷,亚洲欧美中文日韩v在线观看不卡

在Linux下9個(gè)有用的touch命令示例

系統(tǒng) Linux
touch 命令用于創(chuàng)建空文件,也可以更改 Unix 和 Linux 系統(tǒng)上現(xiàn)有文件時(shí)間戳。這里所說的更改時(shí)間戳意味著更新文件和目錄的訪問以及修改時(shí)間。

[[227840]]

touch 命令用于創(chuàng)建空文件,也可以更改 Unix 和 Linux 系統(tǒng)上現(xiàn)有文件時(shí)間戳。這里所說的更改時(shí)間戳意味著更新文件和目錄的訪問以及修改時(shí)間。

讓我們來看看 touch 命令的語法和選項(xiàng):

語法

  1. # touch {選項(xiàng)} {文件}

touch 命令中使用的選項(xiàng):

touch-command-options

touch-command-options

在這篇文章中,我們將介紹 Linux 中 9 個(gè)有用的 touch 命令示例。

 

示例:1 使用 touch 創(chuàng)建一個(gè)空文件

要在 Linux 系統(tǒng)上使用 touch 命令創(chuàng)建空文件,鍵入 touch,然后輸入文件名。如下所示:

  1. [root@linuxtechi ~]# touch devops.txt
  2. [root@linuxtechi ~]# ls -l devops.txt
  3. -rw-r--r--. 1 root root 0 Mar 29 22:39 devops.txt

 

示例:2 使用 touch 創(chuàng)建批量空文件

可能會出現(xiàn)一些情況,我們必須為某些測試創(chuàng)建大量空文件,這可以使用 touch 命令輕松實(shí)現(xiàn):

  1. [root@linuxtechi ~]# touch sysadm-{1..20}.txt

在上面的例子中,我們創(chuàng)建了 20 個(gè)名為 sysadm-1.txtsysadm-20.txt 的空文件,你可以根據(jù)需要更改名稱和數(shù)字。

 

示例:3 改變/更新文件和目錄的訪問時(shí)間

假設(shè)我們想要改變名為 devops.txt 文件的訪問時(shí)間,在 touch 命令中使用 -a 選項(xiàng),然后輸入文件名。如下所示:

  1. [root@linuxtechi ~]# touch -a devops.txt

現(xiàn)在使用 stat 命令驗(yàn)證文件的訪問時(shí)間是否已更新:

  1. [root@linuxtechi ~]# stat devops.txt
  2. File: 'devops.txt'
  3. Size: 0 Blocks: 0 IO Block: 4096 regular empty file
  4. Device: fd00h/64768d Inode: 67324178 Links: 1
  5. Access: (0644/-rw-r--r--) Uid: ( 0/ root) Gid: ( 0/ root)
  6. Context: unconfined_u:object_r:admin_home_t:s0
  7. Access: 2018-03-29 23:03:10.902000000 -0400
  8. Modify: 2018-03-29 22:39:29.365000000 -0400
  9. Change: 2018-03-29 23:03:10.902000000 -0400
  10. Birth: -

改變目錄的訪問時(shí)間:

假設(shè)我們在 /mnt 目錄下有一個(gè) nfsshare 文件夾,讓我們用下面的命令改變這個(gè)文件夾的訪問時(shí)間:

  1. [root@linuxtechi ~]# touch -m /mnt/nfsshare/
  2. [root@linuxtechi ~]# stat /mnt/nfsshare/
  3.   File: '/mnt/nfsshare/'
  4.   Size: 6               Blocks: 0          IO Block: 4096   directory
  5. Device: fd00h/64768d    Inode: 2258        Links: 2
  6. Access: (0755/drwxr-xr-x)  Uid: (    0/    root)   Gid: (    0/    root)
  7. Context: unconfined_u:object_r:mnt_t:s0
  8. Access: 2018-03-29 23:34:38.095000000 -0400
  9. Modify: 2018-03-03 10:42:45.194000000 -0500
  10. Change: 2018-03-29 23:34:38.095000000 -0400
  11.  Birth: -

 

示例:4 更改訪問時(shí)間而不用創(chuàng)建新文件

在某些情況下,如果文件存在,我們希望更改文件的訪問時(shí)間,并避免創(chuàng)建文件。在 touch 命令中使用 -c 選項(xiàng)即可,如果文件存在,那么我們可以改變文件的訪問時(shí)間,如果不存在,我們也可不會創(chuàng)建它。

  1. [root@linuxtechi ~]# touch -c sysadm-20.txt
  2. [root@linuxtechi ~]# touch -c winadm-20.txt
  3. [root@linuxtechi ~]# ls -l winadm-20.txt
  4. ls: cannot access winadm-20.txt: No such file or directory

 

示例:5 更改文件和目錄的修改時(shí)間

touch 命令中使用 -m 選項(xiàng),我們可以更改文件和目錄的修改時(shí)間。

讓我們更改名為 devops.txt 文件的更改時(shí)間:

  1. [root@linuxtechi ~]# touch -m devops.txt

現(xiàn)在使用 stat 命令來驗(yàn)證修改時(shí)間是否改變:

  1. [root@linuxtechi ~]# stat devops.txt
  2.   File: 'devops.txt'
  3.   Size: 0               Blocks: 0          IO Block: 4096   regular empty file
  4. Device: fd00h/64768d    Inode: 67324178    Links: 1
  5. Access: (0644/-rw-r--r--)  Uid: (    0/    root)   Gid: (    0/    root)
  6. Context: unconfined_u:object_r:admin_home_t:s0
  7. Access: 2018-03-29 23:03:10.902000000 -0400
  8. Modify: 2018-03-29 23:59:49.106000000 -0400
  9. Change: 2018-03-29 23:59:49.106000000 -0400
  10.  Birth: -

同樣的,我們可以改變一個(gè)目錄的修改時(shí)間:

  1. [root@linuxtechi ~]# touch -m /mnt/nfsshare/

使用 stat 交叉驗(yàn)證訪問和修改時(shí)間:

  1. [root@linuxtechi ~]# stat devops.txt
  2.   File: 'devops.txt'
  3.   Size: 0               Blocks: 0          IO Block: 4096   regular empty file
  4. Device: fd00h/64768d    Inode: 67324178    Links: 1
  5. Access: (0644/-rw-r--r--)  Uid: (    0/    root)   Gid: (    0/    root)
  6. Context: unconfined_u:object_r:admin_home_t:s0
  7. Access: 2018-03-30 00:06:20.145000000 -0400
  8. Modify: 2018-03-30 00:06:20.145000000 -0400
  9. Change: 2018-03-30 00:06:20.145000000 -0400
  10.  Birth: -

 

示例:7 將訪問和修改時(shí)間設(shè)置為特定的日期和時(shí)間

每當(dāng)我們使用 touch 命令更改文件和目錄的訪問和修改時(shí)間時(shí),它將當(dāng)前時(shí)間設(shè)置為該文件或目錄的訪問和修改時(shí)間。

假設(shè)我們想要將特定的日期和時(shí)間設(shè)置為文件的訪問和修改時(shí)間,這可以使用 touch 命令中的 -c-t 選項(xiàng)來實(shí)現(xiàn)。

日期和時(shí)間可以使用以下格式指定:

  1. {CCYY}MMDDhhmm.ss

其中:

  • CC – 年份的前兩位數(shù)字
  • YY – 年份的后兩位數(shù)字
  • MM – 月份 (01-12)
  • DD – 天 (01-31)
  • hh – 小時(shí) (00-23)
  • mm – 分鐘 (00-59)

讓我們將 devops.txt 文件的訪問和修改時(shí)間設(shè)置為未來的一個(gè)時(shí)間(2025 年 10 月 19 日 18 時(shí) 20 分)。

  1. [root@linuxtechi ~]# touch -c -t 202510191820 devops.txt

使用 stat 命令查看更新訪問和修改時(shí)間:

stat-command-output-linux

stat-command-output-linux

根據(jù)日期字符串設(shè)置訪問和修改時(shí)間,在 touch 命令中使用 -d 選項(xiàng),然后指定日期字符串,后面跟文件名。如下所示:

  1. [root@linuxtechi ~]# touch -c -d "2010-02-07 20:15:12.000000000 +0530" sysadm-29.txt

使用 stat 命令驗(yàn)證文件的狀態(tài):

  1. [root@linuxtechi ~]# stat sysadm-20.txt
  2.   File: sysadm-20.txt
  3.   Size: 0               Blocks: 0          IO Block: 4096   regular empty file
  4. Device: fd00h/64768d    Inode: 67324189    Links: 1
  5. Access: (0644/-rw-r--r--)  Uid: (    0/    root)   Gid: (    0/    root)
  6. Context: unconfined_u:object_r:admin_home_t:s0
  7. Access: 2010-02-07 20:15:12.000000000 +0530
  8. Modify: 2010-02-07 20:15:12.000000000 +0530
  9. Change: 2018-03-30 10:23:31.584000000 +0530
  10.  Birth: -

注意:在上述命令中,如果我們不指定 -c,如果系統(tǒng)中不存在該文件那么 touch 命令將創(chuàng)建一個(gè)新文件,并將時(shí)間戳設(shè)置為命令中給出的。

 

示例:8 使用參考文件設(shè)置時(shí)間戳(-r)

touch 命令中,我們可以使用參考文件來設(shè)置文件或目錄的時(shí)間戳。假設(shè)我想在 devops.txt 文件上設(shè)置與文件 sysadm-20.txt 文件相同的時(shí)間戳,touch 命令中使用 -r 選項(xiàng)可以輕松實(shí)現(xiàn)。

語法:

  1. # touch -r {參考文件} 真正文件
  1. [root@linuxtechi ~]# touch -r sysadm-20.txt devops.txt

 

示例:9 在符號鏈接文件上更改訪問和修改時(shí)間

默認(rèn)情況下,每當(dāng)我們嘗試使用 touch 命令更改符號鏈接文件的時(shí)間戳?xí)r,它只會更改原始文件的時(shí)間戳。如果你想更改符號鏈接文件的時(shí)間戳,則可以使用 touch 命令中的 -h 選項(xiàng)來實(shí)現(xiàn)。

語法:

  1. # touch -h {符號鏈接文件}
  1. [root@linuxtechi opt]# ls -l /root/linuxgeeks.txt
  2. lrwxrwxrwx. 1 root root 15 Mar 30 10:56 /root/linuxgeeks.txt -> linuxadmins.txt
  3. [root@linuxtechi ~]# touch -t 203010191820 -h linuxgeeks.txt
  4. [root@linuxtechi ~]# ls -l linuxgeeks.txt
  5. lrwxrwxrwx. 1 root root 15 Oct 19  2030 linuxgeeks.txt -> linuxadmins.txt

這就是本教程的全部了。我希望這些例子能幫助你理解 touch 命令。請分享你的寶貴意見和評論。 

責(zé)任編輯:龐桂玉 來源: Linux中國
相關(guān)推薦

2020-05-20 13:45:52

Linuxtouch命令

2020-04-16 14:20:16

Linuxtouch命令

2020-09-29 07:18:24

Linuxtee命令

2013-08-19 16:16:37

2018-08-06 08:51:32

Linux命令cut

2015-10-29 13:10:08

passwd命令Linux

2023-01-14 09:26:45

ss命令Linux

2017-03-01 11:46:24

Linuxscreen命令示例

2021-06-26 16:24:21

Linux命令系統(tǒng)

2014-04-08 15:05:11

LinuxLinux命令行補(bǔ)全命令

2013-10-08 15:51:03

Linux find命

2013-05-23 15:10:34

Netcat

2013-10-08 16:24:34

Linux find命

2010-01-22 10:51:54

svn命令linux

2009-08-16 19:43:07

linux中touchtouch命令linux命令行參數(shù)

2018-08-03 10:02:05

Linux命令

2018-02-07 09:25:50

Linux命令touch

2015-03-25 10:36:57

lsLinux

2022-03-20 07:07:23

MySQL數(shù)據(jù)庫命令行工具

2017-03-06 16:45:36

Linux命令動畫演示
點(diǎn)贊
收藏

51CTO技術(shù)棧公眾號