mirror of git://git.suckless.org/sbase
63 lines
1.1 KiB
C
63 lines
1.1 KiB
C
/* 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[])
|
|
{
|
|
char c;
|
|
|
|
t = time(NULL);
|
|
while((c = getopt(argc, argv, "ct:")) != -1)
|
|
switch(c) {
|
|
case 'c':
|
|
cflag = true;
|
|
break;
|
|
case 't':
|
|
t = estrtol(optarg, 0);
|
|
break;
|
|
default:
|
|
exit(EXIT_FAILURE);
|
|
}
|
|
for(; optind < argc; optind++)
|
|
touch(argv[optind]);
|
|
return EXIT_SUCCESS;
|
|
}
|
|
|
|
void
|
|
touch(const char *str)
|
|
{
|
|
int fd;
|
|
struct stat st;
|
|
struct utimbuf ut;
|
|
|
|
if(stat(str, &st) == 0) {
|
|
ut.actime = st.st_atime;
|
|
ut.modtime = t;
|
|
if(utime(str, &ut) == -1)
|
|
eprintf("utime %s:", str);
|
|
return;
|
|
}
|
|
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);
|
|
}
|