Linux常用基本命令( touch )

touch命令:

作用:创建空文件,或者改变文件的时间戳属性

格式: touch [option] [file]

1,同时创建一个或者多个空文件

[email protected]:~/linux/mkdir$ ls
[email protected]:~/linux/mkdir$ touch a.txt
[email protected]:~/linux/mkdir$ ls
a.txt
[email protected]:~/linux/mkdir$ touch b.txt c.txt
[email protected]:~/linux/mkdir$ ls
a.txt  b.txt  c.txt
[email protected]:~/linux/mkdir$ touch {1..5}.txt
[email protected]:~/linux/mkdir$ ls
1.txt  2.txt  3.txt  4.txt  5.txt  a.txt  b.txt  c.txt

2,创建文件,并用stat查看文件的属性状态信息

[email protected]:~/linux/mkdir$ touch ghostwu.txt
[email protected]:~/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: -

最后有3个时间

Access time: 最后访问时间,查看文件的内容时,这个时间会改变,使用cat命令查看文件时,可以看出Access time已经变了

[email protected]:~/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: -
[email protected]:~/linux/mkdir$ cat ghostwu.txt
[email protected]:~/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: -

Modify time:最后修改时间,修改文件内容,文件的修改时间会改变。访问时间和状态改变时间 也发生变化

[email protected]:~/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: -
[email protected]:~/linux/mkdir$ vim ghostwu.txt
[email protected]:~/linux/mkdir$ stat ghostwu.txt
  File: ‘ghostwu.txt‘
  Size: 5             Blocks: 8          IO Block: 4096   regular file
Device: 807h/2055d    Inode: 9569550     Links: 1
Access: (0664/-rw-rw-r--)  Uid: ( 1000/ ghostwu)   Gid: ( 1000/ ghostwu)
Access: 2018-05-01 17:29:34.982228802 +0800
Modify: 2018-05-01 17:29:34.982228802 +0800
Change: 2018-05-01 17:29:35.018231392 +0800
 Birth: -

Change time:状态改变时间,修改文件内容,移动文件,或者改变文件属性等,文件的change time会发生改变.

1,移动文件( 重命名 ), change time 发生改变:

[email protected]:~/linux/mkdir$ stat ghostwu.txt
  File: ‘ghostwu.txt‘
  Size: 5             Blocks: 8          IO Block: 4096   regular file
Device: 807h/2055d    Inode: 9569550     Links: 1
Access: (0664/-rw-rw-r--)  Uid: ( 1000/ ghostwu)   Gid: ( 1000/ ghostwu)
Access: 2018-05-01 17:29:34.982228802 +0800
Modify: 2018-05-01 17:29:34.982228802 +0800
Change: 2018-05-01 17:29:35.018231392 +0800
 Birth: -
[email protected]:~/linux/mkdir$ mv ghostwu.txt ghostwu2.txt
[email protected]:~/linux/mkdir$ stat ghostwu2.txt
  File: ‘ghostwu2.txt‘
  Size: 5             Blocks: 8          IO Block: 4096   regular file
Device: 807h/2055d    Inode: 9569550     Links: 1
Access: (0664/-rw-rw-r--)  Uid: ( 1000/ ghostwu)   Gid: ( 1000/ ghostwu)
Access: 2018-05-01 17:29:34.982228802 +0800
Modify: 2018-05-01 17:29:34.982228802 +0800
Change: 2018-05-01 17:32:25.392863791 +0800

2,修改文件的权限,change time发生了改变

[email protected]:~/linux/mkdir$ stat ghostwu2.txt
  File: ‘ghostwu2.txt‘
  Size: 5             Blocks: 8          IO Block: 4096   regular file
Device: 807h/2055d    Inode: 9569550     Links: 1
Access: (0664/-rw-rw-r--)  Uid: ( 1000/ ghostwu)   Gid: ( 1000/ ghostwu)
Access: 2018-05-01 17:29:34.982228802 +0800
Modify: 2018-05-01 17:29:34.982228802 +0800
Change: 2018-05-01 17:32:25.392863791 +0800
 Birth: -
[email protected]:~/linux/mkdir$ chmod 777 ghostwu2.txt
[email protected]:~/linux/mkdir$ stat ghostwu2.txt
  File: ‘ghostwu2.txt‘
  Size: 5             Blocks: 8          IO Block: 4096   regular file
Device: 807h/2055d    Inode: 9569550     Links: 1
Access: (0777/-rwxrwxrwx)  Uid: ( 1000/ ghostwu)   Gid: ( 1000/ ghostwu)
Access: 2018-05-01 17:29:34.982228802 +0800
Modify: 2018-05-01 17:29:34.982228802 +0800
Change: 2018-05-01 17:33:31.602584110 +0800
 Birth: -

touch -m修改文件的modify和change时间

[email protected]:~/linux/mkdir$ stat ghostwu2.txt
  File: ‘ghostwu2.txt‘
  Size: 5             Blocks: 8          IO Block: 4096   regular file
Device: 807h/2055d    Inode: 9569550     Links: 1
Access: (0777/-rwxrwxrwx)  Uid: ( 1000/ ghostwu)   Gid: ( 1000/ ghostwu)
Access: 2018-05-01 17:29:34.982228802 +0800
Modify: 2018-05-01 17:29:34.982228802 +0800
Change: 2018-05-01 17:33:31.602584110 +0800
 Birth: -
[email protected]:~/linux/mkdir$ touch -m ghostwu2.txt
[email protected]:~/linux/mkdir$ stat ghostwu2.txt
  File: ‘ghostwu2.txt‘
  Size: 5             Blocks: 8          IO Block: 4096   regular file
Device: 807h/2055d    Inode: 9569550     Links: 1
Access: (0777/-rwxrwxrwx)  Uid: ( 1000/ ghostwu)   Gid: ( 1000/ ghostwu)
Access: 2018-05-01 17:29:34.982228802 +0800
Modify: 2018-05-01 17:34:31.678864985 +0800
Change: 2018-05-01 17:34:31.678864985 +0800

touch -d修改创建后的文件的修改时间

[email protected]:~/linux/mkdir$ ls -lh ghostwu2.txt
-rwxrwxrwx 1 ghostwu ghostwu 5 5月   1 17:34 ghostwu2.txt
[email protected]:~/linux/mkdir$ touch -d 20190218 ghostwu2.txt
[email protected]:~/linux/mkdir$ ls -lh ghostwu2.txt
-rwxrwxrwx 1 ghostwu ghostwu 5 2月  18  2019 ghostwu2.txt
[email protected]:~/linux/mkdir$ stat ghostwu2.txt
  File: ‘ghostwu2.txt‘
  Size: 5             Blocks: 8          IO Block: 4096   regular file
Device: 807h/2055d    Inode: 9569550     Links: 1
Access: (0777/-rwxrwxrwx)  Uid: ( 1000/ ghostwu)   Gid: ( 1000/ ghostwu)
Access: 2019-02-18 00:00:00.000000000 +0800
Modify: 2019-02-18 00:00:00.000000000 +0800
Change: 2018-05-01 17:37:13.031347481 +0800
 Birth: -

原文地址:https://www.cnblogs.com/ghostwu/p/8976883.html

时间: 2024-10-08 17:44:36

Linux常用基本命令( touch )的相关文章

Linux 常用基本命令及应用技巧

需要pdf 版 联系我 我的文件中有目录一.Linux 的常用基本命令.........................................................................................................31.登陆.........................................................................................................

【Linux】linux常用基本命令

Linux中许多常用命令是必须掌握的,这里将我学linux入门时学的一些常用的基本命令分享给大家一下,希望可以帮助你们.   这个是我将鸟哥书上的进行了一下整理的,希望不要涉及到版权问题. 1.显示日期的指令: date   2.显示日历的指令:cal     3.简单好用的计算器:bc   怎么10/100会变成0呢?这是因为bc预设仅输出整数,如果要输出小数点下位数,那么就必须要执行 scale=number ,那个number就是小数点位数,例如:     4.重要的几个热键[Tab],[

【Linux】linux常用基本命令(转)

(转自:http://blog.csdn.net/xiaoguaihai/article/details/8705992) Linux中许多常用命令是必须掌握的,这里将我学linux入门时学的一些常用的基本命令分享给大家一下,希望可以帮助你们.   这个是我将鸟哥书上的进行了一下整理的,希望不要涉及到版权问题. 1.显示日期的指令: date   2.显示日历的指令:cal     3.简单好用的计算器:bc   怎么10/100会变成0呢?这是因为bc预设仅输出整数,如果要输出小数点下位数,那

Linux 常用基本命令1

linux终端 linux有6个终端 alt+f1 -f6 切换各个终端  这样有个好处,可以用多个终端同时做事情,一个终端死掉,也可以换另外的终端 cd / 根目录 ls 蓝色的目录 白色是文件 cd bin ls  很多linux命令存放的目录 绿色 可执行文件 蓝色 符号链接 etc目录 重要的配置文件 特别是.conf文件 proc目录 虚拟目录 假目录.里面的文件和子目录 都是系统在运行过程中自动产生的.主要存放系统信息.通过这个目录,可以了解系统运行情况.比如要看系统cpu可以看cp

linux 常用基本命令

相信当你看到此帖子时,你已不再是当年那个颓废的你,你一定也在追梦的路上奔跑,那么请留下你的“梦”,让我们用心去交流,好吗? 废话不多说,直接说正事! 一.查看磁盘分区 1.fdisk -l  查看磁盘分区情况 2.df -lH  用来查看文件系统的磁盘空间占用情况.包括文件系统的大小,使用多少,剩余多少,使用率为多少,以及挂载到哪个目录. 二.linux硬盘分区与挂载 1.手动添加硬盘 关机—编辑虚拟机设置— 添加硬盘—开机 2.fdisk -l 查看磁盘是否添加成功 3.fdisk /dev/

Linux常用命令——touch

touch 创建空文件夹及改变文件的时间戳 语法格式:touch [option][file] touch [选项] [文件]注意:1.mkdir 命令以及后面的选项和目录,每个元之间都要至少要有一个空格2.在 Linux 中一切皆为文件.虽然 touch 命令不能创建目录,但可以修改目录的时间戳参数选项:a,m,d,r,t案例一:同时创建多个文件案例二:更改文件的时间戳touch -a ysg #<== -a 更改最后访问的时间touch -m ysg #<== -m 更改最后修改的时间案例

Linux常用基本命令[cp]

cp:复制文件或者目录 用法格式: cp [option] [source] [dest] cp [选项] [源文件] [目标文件] >用root账户,创建文件,复制文件 [email protected]:/home/ghostwu/linux/cp# vim 1.txt [email protected]:/home/ghostwu/linux/cp# ls -l total 4 -rw-r--r-- 1 root root 19 5月 6 17:47 1.txt [email protec

Linux常用基本命令(file,chown)

1,file命令作用,查看文件的类型 [email protected]:~$ dirname ./linux/rename/1.htm ./linux/rename [email protected]:~$ file ./linux/rename/1.htm ./linux/rename/1.htm: empty [email protected]:~$ echo 'this is a html file' > ./linux/rename/1.htm [email protected]:~$

Linux常用基本命令(rename,basename,dirname)

rename:重命名文件, 我下面的操作是在ubuntu16.04发行版 演示的,centos下面的语法有些不同 1,首先,生成1到100命名的.html后缀的文件 [email protected]:~/linux/rename$ ls [email protected]:~/linux/rename$ touch {1..100}.html [email protected]:~/linux/rename$ ls 100.html 21.html 33.html 45.html 57.htm