Unix and Linux Discussions Tagged with touch |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
3 |
64,930 |
Shell Programming and Scripting |
|
|
|
1 |
12,945 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
3,178 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
1,680 |
Shell Programming and Scripting |
|
|
|
12 |
20,148 |
Shell Programming and Scripting |
|
|
|
1 |
5,070 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
8,980 |
Shell Programming and Scripting |
|
|
|
5 |
9,577 |
UNIX for Advanced & Expert Users |
|
|
|
15 |
5,196 |
UNIX for Dummies Questions & Answers |
|
|
|
4 |
1,642 |
Shell Programming and Scripting |
|
|
|
4 |
7,031 |
Solaris |
|
|
|
2 |
7,972 |
UNIX for Advanced & Expert Users |
|
|
|
0 |
3,544 |
Cartoons for Geeks |
|
|
|
9 |
33,727 |
Shell Programming and Scripting |
|
|
|
0 |
3,820 |
OS X Support RSS |
|
|
|
0 |
5,013 |
OS X Support RSS |
|
|
|
0 |
6,858 |
OS X Support RSS |
|
|
|
3 |
6,881 |
UNIX for Dummies Questions & Answers |
|
|
|
0 |
3,447 |
OS X Support RSS |
|
|
|
0 |
4,357 |
OS X Support RSS |
|
|
|
0 |
7,617 |
Windows & DOS: Issues & Discussions |
|
|
|
0 |
1,899 |
OS X Support RSS |
|
|
|
0 |
4,473 |
OS X Support RSS |
|
|
|
0 |
5,717 |
OS X Support RSS |
|
|
|
0 |
5,478 |
OS X Support RSS |
|
|
|
0 |
15,268 |
OS X Support RSS |
|
|
|
0 |
5,899 |
OS X Support RSS |
|
|
|
0 |
2,960 |
OS X Support RSS |
|
|
|
0 |
10,525 |
OS X Support RSS |
|
|
|
0 |
1,475 |
UNIX and Linux RSS News |
|
|
|
3 |
2,765 |
Shell Programming and Scripting |
|
|
|
5 |
21,176 |
Shell Programming and Scripting |
|
|
|
6 |
12,980 |
Shell Programming and Scripting |
|
|
|
1 |
2,341 |
UNIX for Dummies Questions & Answers |
|
|
|
6 |
52,181 |
UNIX for Dummies Questions & Answers |
|
|
|
6 |
13,524 |
Shell Programming and Scripting |
|
|
|
0 |
2,816 |
UNIX and Linux RSS News |
|
|
|
2 |
13,493 |
UNIX for Dummies Questions & Answers |
|
|
|
0 |
3,629 |
UNIX for Dummies Questions & Answers |
|
|
|
6 |
8,890 |
UNIX for Dummies Questions & Answers |
touch(1B) SunOS/BSD Compatibility Package Commands touch(1B)
NAME
touch - change file access and modification times
SYNOPSIS
/usr/ucb/touch [-acfm] file...
DESCRIPTION
touch sets the access and modification times of each file to the current time. file is created if it does not already exist.
OPTIONS
-a Change the access time of file. Do not change the modification time unless -m is also specified.
-c Do not create file if it does not exist.
-f Attempt to force the touch in spite of read and write permissions on file.
-m Change the modification time of file. Do not change the access time unless -a is also specified.
USAGE
See largefile(5) for the description of the behavior of touch when encountering files greater than or equal to 2 Gbyte ( 2^31 bytes).
EXIT STATUS
The following exit values are returned:
0 touch executed successfully and all requested changes were made.
>0 An error occurred. touch returns the number of files for which the times could not be successfully modified.
ATTRIBUTES
See attributes(5) for descriptions of the following attributes:
+-----------------------------+-----------------------------+
| ATTRIBUTE TYPE | ATTRIBUTE VALUE |
+-----------------------------+-----------------------------+
|Availability |SUNWscpu |
+-----------------------------+-----------------------------+
SEE ALSO
touch(1), attributes(5), largefile(5)
SunOS 5.11 26 Oct 1995 touch(1B)