Revision as of 06:43, 28 July 2017 edit2.25.45.251 (talk) Fixed style errors and verbose writing, removed instructions← Previous edit | Revision as of 00:11, 29 July 2017 edit undoWinhunter (talk | contribs)14,068 editsm Reverted edits by 2.25.45.251 (talk) to last version by Alistair1978Next edit → | ||
Line 1: | Line 1: | ||
{{manual|date=May 2014}} | {{manual|date=May 2014}} | ||
'''touch''' is a standard ] ] ] which is used to update the access date and or modification date of a ] or directory. In its default usage, it is the equivalent of creating or opening a file and saving it without any change to the file contents. Touch |
'''touch''' is a standard ] ] ] which is used to update the access date and / or modification date of a ] or directory. In its default usage, it is the equivalent of creating or opening a file and saving it without any change to the file contents. Touch eliminates the unnecessary steps of opening the file, saving the file, and closing the file again. Instead it simply updates the dates associated with the file or directory. An updated access or modification date can be important for a variety of other programs such as ] utilities or the ] command-line interface programming utility. Typically these types of programs are only concerned with files which have been created or modified after the program was last run. Touch can also be useful for quickly creating files for programs or scripts that require a file with a specific name to exist for successful operation of the program, but do not require the file to have any specific content. | ||
== History == | == History == | ||
Line 32: | Line 32: | ||
$ touch myfile.txt | $ touch myfile.txt | ||
</source> | </source> | ||
Touch does not modify the contents of myfile.txt; it just updates the ] of the file to the computer's current date and time. Or, if myfile.txt does not exist it is created, with zero length. | Touch does not modify the contents of myfile.txt; it just updates the ] of the file to the computer's current date and time, whatever that happens to be. Or, if myfile.txt does not exist it is created, with zero length. | ||
An example of why it might be desired to do this would be a software project needs to be |
An example of why it might be desired to do this would be a software project needs to be re-]d. The makefile has been changed and <tt>make</tt> needs to be run again. However, make is run immediately it will return: | ||
<source lang="console"> | <source lang="console"> | ||
$ make | $ make | ||
Line 40: | Line 40: | ||
</source> | </source> | ||
Since the source code file is already updated, touch |
Since the source code file is already updated, touch needs to be used to simulate a file update, so <tt>make</tt> will run and recompile the software. | ||
<source lang="bash"> | <source lang="bash"> | ||
$ touch project.c | $ touch project.c | ||
Line 46: | Line 46: | ||
</source> | </source> | ||
Then make will rebuild the project. | Then make will rebuild the project. | ||
Here's how to change the date and time of a file. | |||
<source lang="bash"> | |||
$ touch -t 200701310846.26 index.html | |||
$ touch -d '2007-01-31 08:46:26' index.html | |||
</source> | |||
The above example touch commands are equivalent: they will change the date and time of <code>index.html</code> to January 31, 2007 at 8:46:26am. | |||
The creation date of links are unchanged. For example, on the following system, the date is the 20th Feb 2012, but a link was created on 25th Jan 2012. Despite touching the link, the date remains as 25th Jan 2012 – it has not changed to the 20th Feb 2012. | The creation date of links are unchanged. For example, on the following system, the date is the 20th Feb 2012, but a link was created on 25th Jan 2012. Despite touching the link, the date remains as 25th Jan 2012 – it has not changed to the 20th Feb 2012. | ||
Line 58: | Line 66: | ||
</source> | </source> | ||
Although commands like <code>cp, chmod</code> etc. have a recursive switch (-r or -R or both) to apply the command recursively to the subdirectories, <code>touch</code> doesn't have this functionality yet (as of February 2013). It can be accomplished by the following: | |||
<code>touch</code> is not able to act recursively. | |||
<source lang="bash"> | |||
$ find . -exec touch {} + | |||
</source> | |||
== Other operating systems == | == Other operating systems == |
Revision as of 00:11, 29 July 2017
This article is written like a manual or guide. Please help rewrite this article and remove advice or instruction. (May 2014) |
touch is a standard Unix command-line interface program which is used to update the access date and / or modification date of a file or directory. In its default usage, it is the equivalent of creating or opening a file and saving it without any change to the file contents. Touch eliminates the unnecessary steps of opening the file, saving the file, and closing the file again. Instead it simply updates the dates associated with the file or directory. An updated access or modification date can be important for a variety of other programs such as backup utilities or the make command-line interface programming utility. Typically these types of programs are only concerned with files which have been created or modified after the program was last run. Touch can also be useful for quickly creating files for programs or scripts that require a file with a specific name to exist for successful operation of the program, but do not require the file to have any specific content.
History
A touch utility appeared in Version 7 AT&T UNIX. The version of touch bundled in GNU coreutils was written by Paul Rubin, Arnold Robbins, Jim Kingdon, and David MacKenzie.
Specification
The Single Unix Specification (SUS) specifies that touch should change the access times, modification times, or both, for a file. The file is identified by a pathname supplied as a single argument. It also specifies that if the file identified does not exist, the file is created and the access and modification times are set as specified. If no new timestamps are specified, touch uses the current time.
Usage
The SUS mandates the following options:
- -a, change the access time only
- -c, if the file does not exist, do not create it and do not report this condition
- -d date_time, use the date_time specified to update the access and modification times
- -m, change the modification time only
- -r file, use the access and modification times of file
- -t time, use the time specified (in the format below) to update the access and modification times
The time is specified in the format yy]MMDDhhmm where MM specifies the two-digit numeric month, DD specifies the two-digit numeric day, hh specifies the two-digit numeric hour, mm specifies the two-digit numeric minutes. Optionally ss specifies the two-digit seconds, cc specifies the first two digits of the year, and yy specifies the last two digits of the year.
Note that if invoked without these options, the standard specifies that the current date and time are used to change the access and modification times. This behaviour simulates an update to a file without having to change it, which may be desirable in certain situations (see the example below).
Other Unix and Unix-like operating systems may add extra options. For example, GNU touch adds a -d option, which enables time input in formats other than that specified.
Note that the dates of creation of symbolic links are not changed.
Examples
The simplest use case for touch is this:
$ touch myfile.txt
Touch does not modify the contents of myfile.txt; it just updates the timestamp of the file to the computer's current date and time, whatever that happens to be. Or, if myfile.txt does not exist it is created, with zero length.
An example of why it might be desired to do this would be a software project needs to be re-maked. The makefile has been changed and make needs to be run again. However, make is run immediately it will return:
$ make make: nothing to be done for `all'
Since the source code file is already updated, touch needs to be used to simulate a file update, so make will run and recompile the software.
$ touch project.c $ make
Then make will rebuild the project.
Here's how to change the date and time of a file.
$ touch -t 200701310846.26 index.html $ touch -d '2007-01-31 08:46:26' index.html
The above example touch commands are equivalent: they will change the date and time of index.html
to January 31, 2007 at 8:46:26am.
The creation date of links are unchanged. For example, on the following system, the date is the 20th Feb 2012, but a link was created on 25th Jan 2012. Despite touching the link, the date remains as 25th Jan 2012 – it has not changed to the 20th Feb 2012.
$ date Wed Feb 20 09:45:50 GMT 2012 $ ls -l libcidn.so lrwxrwxrwx 1 foobar foobar 22 Jan 25 01:41 libcidn.so -> ../../lib/libcidn.so.1 $ touch libcidn.so $ ls -l libcidn.so lrwxrwxrwx 1 foobar foobar 22 Jan 25 01:41 libcidn.so -> ../../lib/libcidn.so.1
Although commands like cp, chmod
etc. have a recursive switch (-r or -R or both) to apply the command recursively to the subdirectories, touch
doesn't have this functionality yet (as of February 2013). It can be accomplished by the following:
$ find . -exec touch {} +
Other operating systems
Programs that perform similar operations as the Unix touch
utility are available for other operating systems, including Microsoft Windows and the classic Mac OS.
See also
External links
touch
– Shell and Utilities Reference, The Single UNIX Specification, Version 4 from The Open Group- examples showing how to use touch
- touch for Windows
Unix command-line interface programs and shell builtins | |
---|---|
File system | |
Processes | |
User environment | |
Text processing | |
Shell builtins | |
Searching | |
Documentation | |
Software development | |
Miscellaneous | |
|
Categories: