sbase/touch.c

63 lines
1.1 KiB
C
Raw Normal View History

2011-05-22 21:36:34 -04:00
/* See LICENSE file for copyright and license details. */
#include <errno.h>
#include <fcntl.h>
#include <stdbool.h>
#include <stdlib.h>
#include <time.h>
#include <unistd.h>
#include <utime.h>
#include <sys/stat.h>
#include "util.h"
static void touch(const char *);
static bool cflag = false;
static time_t t;
int
main(int argc, char *argv[])
{
2011-06-10 00:41:40 -04:00
char c;
2011-05-22 21:36:34 -04:00
t = time(NULL);
2011-05-23 20:13:34 -04:00
while((c = getopt(argc, argv, "ct:")) != -1)
switch(c) {
case 'c':
2011-05-22 21:36:34 -04:00
cflag = true;
break;
2011-05-23 20:13:34 -04:00
case 't':
2011-06-10 09:55:01 -04:00
t = estrtol(optarg, 0);
2011-05-23 20:13:34 -04:00
break;
default:
exit(EXIT_FAILURE);
}
for(; optind < argc; optind++)
touch(argv[optind]);
2011-05-22 21:36:34 -04:00
return EXIT_SUCCESS;
}
void
touch(const char *str)
{
int fd;
struct stat st;
struct utimbuf ut;
2011-06-18 01:43:10 -04:00
if(stat(str, &st) == 0) {
ut.actime = st.st_atime;
ut.modtime = t;
if(utime(str, &ut) == -1)
eprintf("utime %s:", str);
return;
2011-05-22 21:36:34 -04:00
}
2011-06-18 01:43:10 -04:00
else if(errno != ENOENT)
eprintf("stat %s:", str);
else if(cflag)
return;
if((fd = open(str, O_CREAT|O_EXCL,
S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP|S_IROTH|S_IWOTH)) == -1)
eprintf("open %s:", str);
close(fd);
touch(str);
2011-05-22 21:36:34 -04:00
}