busybox/touch.c

86 lines
2.0 KiB
C
Raw Normal View History

/* vi: set sw=4 ts=4: */
1999-10-07 14:00:23 +05:30
/*
* Mini touch implementation for busybox
*
1999-10-21 03:38:37 +05:30
*
* Copyright (C) 1999,2000 by Lineo, inc.
1999-10-21 03:38:37 +05:30
* Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
1999-10-07 14:00:23 +05:30
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*/
1999-10-05 21:54:54 +05:30
#include "internal.h"
#include <stdio.h>
1999-10-07 14:00:23 +05:30
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
1999-10-05 21:54:54 +05:30
#include <utime.h>
1999-10-07 14:00:23 +05:30
#include <errno.h>
1999-10-05 21:54:54 +05:30
static const char touch_usage[] = "touch [-c] file [file ...]\n"
#ifndef BB_FEATURE_TRIVIAL_HELP
"\nUpdate the last-modified date on the given file[s].\n\n"
"Options:\n"
"\t-c\tDo not create any files\n"
#endif
;
1999-10-07 14:00:23 +05:30
extern int touch_main(int argc, char **argv)
{
int fd;
int create = TRUE;
1999-10-07 14:00:23 +05:30
/* Parse options */
while (--argc > 0 && **(++argv) == '-') {
while (*(++(*argv))) {
switch (**argv) {
case 'c':
create = FALSE;
break;
default:
usage(touch_usage);
exit(FALSE);
}
}
1999-10-07 14:00:23 +05:30
}
if (argc < 1) {
usage(touch_usage);
}
while (argc > 0) {
fd = open(*argv, (create == FALSE) ? O_RDWR : O_RDWR | O_CREAT,
S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH);
if (fd < 0) {
if (create == FALSE && errno == ENOENT)
exit(TRUE);
else {
fatalError("touch: %s", strerror(errno));
}
}
close(fd);
if (utime(*argv, NULL)) {
fatalError("touch: %s", strerror(errno));
}
argc--;
argv++;
}
return(TRUE);
}