Linux -- touch

/usr/share/info/coreutils.info.gz
File: coreutils.info,  Node: touch invocation,  Prev: chmod invocation,  Up: Changing file attributes

13.4 `touch': Change file timestamps
====================================

`touch' changes the access and/or modification times of the specified
files.  Synopsis:

     touch [OPTION]... FILE...

   Any FILE argument that does not exist is created empty, unless
option `--no-create' (`-c') or `--no-dereference' (`-h') was in effect.

   A FILE argument string of `-' is handled specially and causes
`touch' to change the times of the file associated with standard output.

   By default, `touch' sets file timestamps to the current time.
Because `touch' acts on its operands left to right, the resulting
timestamps of earlier and later operands may disagree.  Also, the
determination of what time is "current" depends on the platform.
Platforms with network file systems often use different clocks for the
operating system and for file systems; because `touch' typically uses
file systems' clocks by default, clock skew can cause the resulting
file timestamps to appear to be in a program's "future" or "past".

   The `touch' command sets the file's timestamp to the greatest
representable value that is not greater than the requested time.  This
can differ from the requested time for several reasons.  First, the
requested time may have a higher resolution than supported.  Second, a
file system may use different resolutions for different types of times.
Third, file timestamps may use a different resolution than operating
system timestamps.  Fourth, the operating system primitives used to
update timestamps may employ yet a different resolution.  For example,
in theory a file system might use 10-microsecond resolution for access
time and 100-nanosecond resolution for modification time, and the
operating system might use nanosecond resolution for the current time
and microsecond resolution for the primitive that `touch' uses to set a
file's timestamp to an arbitrary value.

   When setting file timestamps to the current time, `touch' can change
the timestamps for files that the user does not own but has write
permission for.  Otherwise, the user must own the files.  Some older
systems have a further restriction: the user must own the files unless
both the access and modification times are being set to the current
time.

   Although `touch' provides options for changing two of the times--the
times of last access and modification--of a file, there is actually a
standard third one as well: the inode change time.  This is often
referred to as a file's `ctime'.  The inode change time represents the
time when the file's meta-information last changed.  One common example
of this is when the permissions of a file change.  Changing the
permissions doesn't access the file, so the atime doesn't change, nor
does it modify the file, so the mtime doesn't change.  Yet, something
about the file itself has changed, and this must be noted somewhere.
This is the job of the ctime field.  This is necessary, so that, for
example, a backup program can make a fresh copy of the file, including
the new permissions value.  Another operation that modifies a file's
ctime without affecting the others is renaming.  In any case, it is not
possible, in normal operations, for a user to change the ctime field to
a user-specified value.  Some operating systems and file systems
support a fourth time: the birth time, when the file was first created;
by definition, this timestamp never changes.

   Time stamps assume the time zone rules specified by the `TZ'
environment variable, or by the system default rules if `TZ' is not
set.  *Note Specifying the Time Zone with `TZ': (libc)TZ Variable.  You
can avoid ambiguities during daylight saving transitions by using UTC
time stamps.

   The program accepts the following options.  Also see *note Common
options::.

(一)要修改时间类型,不加选项默认为创建时间
`-a'
`--time=atime'
`--time=access'
`--time=use'
     Change the access time only.


`-m'
`--time=mtime'
`--time=modify'
     Change the modification time only.

(二)选择要修改的时间,不加选项默认为当前时间

1、精确选择时间
`-t [[CC]YY]MMDDHHMM[.SS]'    [年][月][天][时][分][秒]
     Use the argument (optional four-digit or two-digit years, months,
     days, hours, minutes, optional seconds) instead of the current
     time.  If the year is specified with only two digits, then CC is
     20 for years in the range 0 ... 68, and 19 for years in 69 ... 99.
     If no digits of the year are specified, the argument is
     interpreted as a date in the current year.  On the atypical
     systems that support leap seconds, SS may be `60'.

`-d'
`--date=TIME'
     Use TIME instead of the current time.  It can contain month names,
     time zones, `am' and `pm', `yesterday', etc.  For example,
     `--date="2004-02-27 14:19:13.489392193 +0530"' specifies the
     instant of time that is 489,392,193 nanoseconds after February 27,
     2004 at 2:19:13 PM in a time zone that is 5 hours and 30 minutes
     east of UTC.  *Note Date input formats::.  File systems that do
     not support high-resolution time stamps silently ignore any excess
     precision here.
以上两个选项可以创建一个未来的文件

2、参考某个文件选择时间
`-r FILE'
`--reference=FILE'
     Use the times of the reference FILE instead of the current time.
     If this option is combined with the `--date=TIME' (`-d TIME')
     option, the reference FILE's time is the origin for any relative
     TIMEs given, but is otherwise ignored.  For example, `-r foo -d
     '-5 seconds'' specifies a time stamp equal to five seconds before
     the corresponding time stamp for `foo'.  If FILE is a symbolic
     link, the reference timestamp is taken from the target of the
     symlink, unless `-h' was also in effect.

 

(三)对链接文件的处理
`-h'
`--no-dereference'
     Attempt to change the timestamps of a symbolic link, rather than
     what the link refers to.  When using this option, empty files are
     not created, but option `-c' must also be used to avoid warning
     about files that do not exist.  Not all systems support changing
     the timestamps of symlinks, since underlying system support for
     this action was not required until POSIX 2008.  Also, on some
     systems, the mere act of examining a symbolic link changes the
     access time, such that only changes to the modification time will
     persist long enough to be observable.  When coupled with option
     `-r', a reference timestamp is taken from a symbolic link rather
     than the file it refers to.

`-c'
`--no-create'
     Do not warn about or create files that do not exist.

`-f'
     Ignored; for compatibility with BSD versions of `touch'.
   On older systems, `touch' supports an obsolete syntax, as follows.
If no timestamp is given with any of the `-d', `-r', or `-t' options,
and if there are two or more FILEs and the first FILE is of the form
`MMDDHHMM[YY]' and this would be a valid argument to the `-t' option
(if the YY, if any, were moved to the front), and if the represented
year is in the range 1969-1999, that argument is interpreted as the time
for the other files instead of as a file name.  This obsolete behavior
can be enabled or disabled with the `_POSIX2_VERSION' environment
variable (*note Standards conformance::), but portable scripts should
avoid commands whose behavior depends on this variable.  For example,
use `touch ./12312359 main.c' or `touch -t 12312359 main.c' rather than
the ambiguous `touch 12312359 main.c'.

   An exit status of zero indicates success, and a nonzero value
indicates failure.


转载于:https://www.cnblogs.com/IceSword-syy/p/3954373.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值