标签:linux常用命令
ls
list directory contents 列出目录内容
选项
-a --all
do not ignore entries starting with .
显示隐藏文件(以.开头的文件)
-l use a long listing format
显示长格式
-h --human-readable
人易读格式
-d 显示目录自身,而非其内容
pwd
pwd - print name of current/working directory
显示目前的工作目录
touch
1、用于创建空文件
-c, --no-create
do not create any files
2、-m 文件的修改时间(mtime:文件内容最近修改的时间)
-a 访问时间(atime:文件内容最近打开读的时间)
文件的改变时间(ctime:文件属性最近改变的时间)
ps:文件内容的修改以及访问时间改变都会更新ctime的时间
如果单单改变了文件的属性,而没有访问及修改,那么就只会改变ctime
-t STAMP
use [[CC]YY]MMDDhhmm[.ss] instead of current time
替代当前日间
ps:CC为年数中的前两位,即”世纪数”
YY为年数的后两位.
如果不给出CC的值,则linux中touch命令参数将把年数CCYY限定在1969--2068之内.
MM为月数,DD为天将把年数CCYY限定在1969--2068之内.MM为月数.
DD为天数,hh 为小时数(几点).
mm为分钟数,SS为秒数.
由于系统的限制,早于1970年1月1日的时间是错误的.
改动文件的访问时间和改动时间为timestamp
-m:只改变mtime 不过ctime也会更新
-a:只改变atime 不过ctime也会更新
-t:改变mtime和atime 不过ctime不会更新
以下方式也会改变各时间戳
只改变文件属性--改变ctime
访问文件--改变atime
修改文件--改变mtime和ctime
本文出自 “11745576” 博客,请务必保留此出处http://11755576.blog.51cto.com/11745576/1973062
标签:linux常用命令
原文地址:http://11755576.blog.51cto.com/11745576/1973062