mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-27 11:52:03 +00:00
977b25a76a
The overloading of IR emits magic \X'...' sequences that turn into HTML manual links. But not all such IR invocations should be manual links; those had to be written to avoid the IR macro before. Worse, the \X'...' ending the IR causes troff to emit only a single space after a period. Defining a new IM macro for manual references fixes both problems. Fixes #441.
35 lines
462 B
Groff
35 lines
462 B
Groff
.TH TOUCH 1
|
|
.SH NAME
|
|
touch \- set modification date of a file
|
|
.SH SYNOPSIS
|
|
.B touch
|
|
[
|
|
.B -c
|
|
]
|
|
[
|
|
.B -t
|
|
.I time
|
|
]
|
|
.I file ...
|
|
.SH DESCRIPTION
|
|
.I Touch
|
|
attempts to set the modification time of the
|
|
.I files
|
|
to
|
|
.I time
|
|
(by default, the current time).
|
|
If a
|
|
.I file
|
|
does not exist,
|
|
it will be created unless option
|
|
.B -c
|
|
is present.
|
|
.SH SOURCE
|
|
.B \*9/src/cmd/touch.c
|
|
.SH SEE ALSO
|
|
.IM ls (1) ,
|
|
.IM stat (3) ,
|
|
.IM chmod (1)
|
|
.SH BUGS
|
|
.I Touch
|
|
will not touch directories.
|