diff options
author | rsc <devnull@localhost> | 2003-11-23 18:04:47 +0000 |
---|---|---|
committer | rsc <devnull@localhost> | 2003-11-23 18:04:47 +0000 |
commit | bc7cb1a15a67c859c8c71c4b52bb35fe9425a63d (patch) | |
tree | 8ca0fe4e2418e6aa18dc74a236c577a719f6c6ed /src/cmd/touch.c | |
parent | f08fdedcee12c06e3ce9ac9bec363915978e8289 (diff) | |
download | plan9port-bc7cb1a15a67c859c8c71c4b52bb35fe9425a63d.tar.gz plan9port-bc7cb1a15a67c859c8c71c4b52bb35fe9425a63d.tar.bz2 plan9port-bc7cb1a15a67c859c8c71c4b52bb35fe9425a63d.zip |
new utilities.
the .C files compile but are renamed to avoid building automatically.
Diffstat (limited to 'src/cmd/touch.c')
-rw-r--r-- | src/cmd/touch.c | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/src/cmd/touch.c b/src/cmd/touch.c new file mode 100644 index 00000000..539f89d2 --- /dev/null +++ b/src/cmd/touch.c @@ -0,0 +1,62 @@ +#include <u.h> +#include <libc.h> + +int touch(int, char *); +ulong now; + +void +usage(void) +{ + fprint(2, "usage: touch [-c] [-t time] files\n"); + exits("usage"); +} + +void +main(int argc, char **argv) +{ + int nocreate = 0; + int status = 0; + + now = time(0); + ARGBEGIN{ + case 't': + now = strtoul(EARGF(usage()), 0, 0); + break; + case 'c': + nocreate = 1; + break; + default: + usage(); + }ARGEND + + if(!*argv) + usage(); + while(*argv) + status += touch(nocreate, *argv++); + if(status) + exits("touch"); + exits(0); +} + +int +touch(int nocreate, char *name) +{ + Dir stbuff; + int fd; + + nulldir(&stbuff); + stbuff.mtime = now; + if(dirwstat(name, &stbuff) >= 0) + return 0; + if(nocreate){ + fprint(2, "touch: %s: cannot wstat: %r\n", name); + return 1; + } + if ((fd = create(name, OREAD, 0666)) < 0) { + fprint(2, "touch: %s: cannot create: %r\n", name); + return 1; + } + dirfwstat(fd, &stbuff); + close(fd); + return 0; +} |