Revision as of 18:31, 5 January 2019 editGhettoblaster (talk | contribs)Extended confirmed users19,867 editsm →Overview← Previous edit | Revision as of 23:38, 8 January 2019 edit undoGhettoblaster (talk | contribs)Extended confirmed users19,867 editsmNo edit summaryNext edit → | ||
Line 6: | Line 6: | ||
| caption = | | caption = | ||
| developer = Paul Rubin, Arnold Robbins, Jim Kingdon, David MacKenzie, Kris Heidenstrom | | developer = Paul Rubin, Arnold Robbins, Jim Kingdon, David MacKenzie, Kris Heidenstrom | ||
| released = | | released = {{Start date and age|1979|1}} | ||
| latest release version = | | latest release version = | ||
| latest release date = | | latest release date = |
Revision as of 23:38, 8 January 2019
Developer(s) | Paul Rubin, Arnold Robbins, Jim Kingdon, David MacKenzie, Kris Heidenstrom |
---|---|
Initial release | January 1979; 45 years ago (1979-01) |
Operating system | Unix and Unix-like, AROS, OS-9, FreeDOS |
Type | Command |
In computing, touch
is a command in Unix and Unix-like operating systems used to update the access date and/or modification date of a computer file or directory. The command is also available in the AROS shell, the OS-9 shell and for FreeDOS.
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 avoids opening, saving, and closing the file. 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.
Overview
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.
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.
Programs that perform similar operations as the Unix touch
utility are available for other operating systems, including Microsoft Windows and the classic Mac OS.
The FreeDOS version was developed by Kris Heidenstrom.
See also
References
- http://aros.sourceforge.net/documentation/users/shell/index.php
- Paul S. Dayan (1992). The OS-9 Guru - 1 : The Facts. Galactic Industrial Limited. ISBN 0-9519228-0-7.
- http://www.ibiblio.org/pub/micro/pc-stuff/freedos/files/distributions/1.2/repos/pkg-html/group-util.html
- touch for Windows
- http://www.ibiblio.org/pub/micro/pc-stuff/freedos/files/distributions/1.2/repos/pkg-html/touch.html
External links
touch
– Shell and Utilities Reference, The Single UNIX Specification, Version 4 from The Open Group- examples showing how to use touch
Unix command-line interface programs and shell builtins | |
---|---|
File system | |
Processes | |
User environment | |
Text processing | |
Shell builtins | |
Searching | |
Documentation | |
Software development | |
Miscellaneous | |
|
Categories: