每天一个linux命令-touch

linux在Linux系统中用于创建文件或者,修改文件的时间戳

  1. 命令功能:

    创建一个空文件,或者修改已存在文件的时间戳

  2. 语法参数:

-a或--time=atime或--time=access或--time=use 只更改存取时间

-c或--no-create 不建立任何文件。

-d<时间日期> 使用指定的日期时间,而非现在的时间。

-m或--time=mtime或--time=modify 只更改修改时间

-r<参考文件或目录> 把指定文件或目录的日期时间,统统设成和参考文件或目录的日期时间相同。

-t<日期时间>  使用指定的日期时间,而非现在的时间

-help 帮助文档

-version 显示版本信息

命令格式:touch [option] filename

常用范例:

例1:创建不存在的文件。

命令:

touch 1.txt

输出:加参数-c则不会创建文件

 [[email protected] test]# touch 1.txt 2.txt 3.txt
 [[email protected] test]# ls
 1.txt  2.txt  3.txt
 [[email protected] test]# touch -c 4.txt
 [[email protected] test]# ls
 1.txt  2.txt  3.txt
 [[email protected] test]#

例二:修改已存在文件的最后修改时间至当前。

命令:

touch install.log

输出:

[[email protected] ~]# ll install.log
-rw-r--r--. 1 root root 34961 Jun 23 22:02 install.log
[[email protected] ~]# touch install.log
[[email protected] ~]# ll install.log
-rw-r--r--. 1 root root 34961 Jun 30 15:17 install.log
[[email protected] ~]#

例三:将install.log.syslog的时间戳修改为install.log的时间戳。

命令:

touch -r install.log install.log.syslog

输出:

[[email protected] ~]# ll install.log install.log.syslog 
-rw-r--r--. 1 root root 34961 Jun 30 15:17 install.log
-rw-r--r--. 1 root root  7346 Jun 23 21:59 install.log.syslog
[[email protected] ~]# touch -r install.log install.log.syslog 
[[email protected] ~]# ll install.log install.log.syslog       
-rw-r--r--. 1 root root 34961 Jun 30 15:17 install.log
-rw-r--r--. 1 root root  7346 Jun 30 15:17 install.log.syslog
[[email protected] ~]#

例四:设置文件的时间戳,将install.log.syslog文件时间戳设置位03211111

命令:

touch -t 03211111 install.log.syslog

输出:

[[email protected] ~]# ll install.log.syslog 
-rw-r--r--. 1 root root 7346 Jun 30 15:17 install.log.syslog
[[email protected] ~]# touch -t 03211111 install.log.syslog 
[[email protected] ~]# ll install.log.syslog 
-rw-r--r--. 1 root root 7346 Mar 21 11:11 install.log.syslog
[[email protected] ~]#
时间: 2024-12-14 14:40:12

每天一个linux命令-touch的相关文章

【转载】每天一个Linux命令

每天一个linux命令(1)  : ls 命令 每天一个linux命令(2)  : cd 命令 每天一个linux命令(3)  : pwd 命令 每天一个linux命令(4)  : mkdir 命令 每天一个linux命令(5)  : rm 命令 每天一个linux命令(6)  : rmdir 命令 每天一个linux命令(7)  : mv 命令 每天一个linux命令(8)  : cp 命令 每天一个linux命令(9)  : touch 命令 每天一个linux命令(10): cat 命令

每天一个linux命令目录(转)

转载: http://www.cnblogs.com/peida/archive/2012/12/05/2803591.html 开始详细系统的学习linux常用命令,坚持每天一个命令,所以这个系列为每天一个linux命令.学习的主要参考资料为: 1.<鸟哥的linux私房菜> 2.http://codingstandards.iteye.com/blog/786653 3.linux命令五分钟系列 4.其他互联网资料,google,baidu等搜索引擎 一. 文件目录操作命令: 1.每天一个

[转]每天一个linux命令目录

http://www.cnblogs.com/peida/archive/2012/12/05/2803591.html 开始详细系统的学习linux常用命令,坚持每天一个命令,所以这个系列为每天一个linux命令.学习的主要参考资料为: 1.<鸟哥的linux私房菜> 2.http://codingstandards.iteye.com/blog/786653 3.linux命令五分钟系列 4.其他互联网资料,google,baidu等搜索引擎 一. 文件目录操作命令: 1.每天一个linu

【转】每天一个linux命令目录

原文网址:http://www.cnblogs.com/peida/archive/2012/12/05/2803591.html 开始详细系统的学习linux常用命令,坚持每天一个命令,所以这个系列为每天一个linux命令.学习的主要参考资料为: 1.<鸟哥的linux私房菜> 2.http://codingstandards.iteye.com/blog/786653 3.linux命令五分钟系列 4.其他互联网资料,google,baidu等搜索引擎 一. 文件目录操作命令: 1.每天一

每天一个linux命令目录

开始详细系统的学习linux常用命令,坚持每天一个命令,所以这个系列为每天一个linux命令.学习的主要参考资料为: 1.<鸟哥的linux私房菜> 2.http://codingstandards.iteye.com/blog/786653 3.linux命令五分钟系列 4.其他互联网资料,google,baidu等搜索引擎 一. 文件目录操作命令: 1.每天一个linux命令(1):ls命令 2.每天一个linux命令(2):cd命令  3.每天一个linux命令(3):pwd命令 4.每

每天一个linux命令(目录)

转:http://www.cnblogs.com/peida/archive/2012/12/05/2803591.html 开始详细系统的学习linux常用命令,坚持每天一个命令,所以这个系列为每天一个linux命令.学习的主要参考资料为: 1.<鸟哥的linux私房菜> 2.http://codingstandards.iteye.com/blog/786653 3.linux命令五分钟系列 4.其他互联网资料,google,baidu等搜索引擎 一. 文件目录操作命令: 1.每天一个li

转:每天一个Linux命令

每天一个linux命令目录 开始详细系统的学习linux常用命令,坚持每天一个命令,所以这个系列为每天一个linux命令.学习的主要参考资料为: 1.<鸟哥的linux私房菜> 2.http://codingstandards.iteye.com/blog/786653 3.linux命令五分钟系列 4.其他互联网资料,google,baidu等搜索引擎 一. 文件目录操作命令: 1.每天一个linux命令(1):ls命令 2.每天一个linux命令(2):cd命令  3.每天一个linux命

每天一个linux命令(1):ln 命令

每天一个linux命令(35):ln 命令 ln 是linux中又一个非常重要命令,它的功能是为某一个文件在另外一个位置建立一个同步的链接.当我们需要在不同的目录,用到相同的文件时,我们不需要在 每一个需要的目录下都放一个必须相同的文件,我们只要在某个固定的目录,放上该文件,然后在 其它的目录下用ln命令链接(link)它就可以,不必重复 的占用磁盘空间. 1.命令格式: ln [参数][源文件或目录][目标文件或目录] 2.命令功能: Linux文件系统中,有所谓的链接(link),我们可以将

每天一个linux命令:cp(8)

cp cp命令用来将一个或多个源文件或者目录复制到指定的目的文件或目录.它可以将单个源文件复制成一个指定文件名的具体的文件或一个已经存在的目录下.cp命令还支持同时复制多个文件,当一次复制多个文件时,目标文件参数必须是一个已经存在的目录,否则将出现错误 格式 cp [选项] [参数] 参数选项 参数 备注 -a 此参数的效果和同时指定"-dpR"参数相同: -d 当复制符号连接时,把目标文件或目录也建立为符号连接,并指向与源文件或目录连接的原始文件或目录: -f 强行复制文件或目录,不