blob: fa2f3b6092c952c26329432a33742292c86559f5 [file] [log] [blame]
Erik Andersene49d5ec2000-02-08 19:58:47 +00001/* vi: set sw=4 ts=4: */
Eric Andersen596e5461999-10-07 08:30:23 +00002/*
3 * Mini touch implementation for busybox
4 *
Eric Andersenc4996011999-10-20 22:08:37 +00005 *
Erik Andersen61677fe2000-04-13 01:18:56 +00006 * Copyright (C) 1999,2000 by Lineo, inc.
Eric Andersenc4996011999-10-20 22:08:37 +00007 * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
Eric Andersen596e5461999-10-07 08:30:23 +00008 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 *
23 */
Eric Andersencc8ed391999-10-05 16:24:54 +000024
Eric Andersen3570a342000-09-25 21:45:58 +000025#include "busybox.h"
Eric Andersen596e5461999-10-07 08:30:23 +000026#include <stdio.h>
27#include <sys/types.h>
Eric Andersen596e5461999-10-07 08:30:23 +000028#include <fcntl.h>
29#include <utime.h>
30#include <errno.h>
Eric Andersened3ef502001-01-27 08:24:39 +000031#include <unistd.h>
32#include <stdlib.h>
Eric Andersen596e5461999-10-07 08:30:23 +000033
Erik Andersene49d5ec2000-02-08 19:58:47 +000034extern int touch_main(int argc, char **argv)
Eric Andersencc8ed391999-10-05 16:24:54 +000035{
Erik Andersene49d5ec2000-02-08 19:58:47 +000036 int fd;
37 int create = TRUE;
Eric Andersen596e5461999-10-07 08:30:23 +000038
Erik Andersene49d5ec2000-02-08 19:58:47 +000039 /* Parse options */
Eric Andersen5a0a2aa2000-06-02 23:26:44 +000040 while (--argc > 0 && **(++argv) == '-') {
41 while (*(++(*argv))) {
Erik Andersene49d5ec2000-02-08 19:58:47 +000042 switch (**argv) {
43 case 'c':
44 create = FALSE;
45 break;
46 default:
47 usage(touch_usage);
Erik Andersene49d5ec2000-02-08 19:58:47 +000048 }
Eric Andersen5a0a2aa2000-06-02 23:26:44 +000049 }
50 }
51
52 if (argc < 1) {
53 usage(touch_usage);
54 }
55
56 while (argc > 0) {
57 fd = open(*argv, (create == FALSE) ? O_RDWR : O_RDWR | O_CREAT,
58 S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH);
59 if (fd < 0) {
60 if (create == FALSE && errno == ENOENT)
Matt Kraai3e856ce2000-12-01 02:55:13 +000061 return EXIT_SUCCESS;
Eric Andersen5a0a2aa2000-06-02 23:26:44 +000062 else {
Matt Kraai0dab8292000-12-18 03:08:29 +000063 perror_msg_and_die("%s", *argv);
Eric Andersen5a0a2aa2000-06-02 23:26:44 +000064 }
65 }
66 close(fd);
67 if (utime(*argv, NULL)) {
Matt Kraai0dab8292000-12-18 03:08:29 +000068 perror_msg_and_die("%s", *argv);
Eric Andersen5a0a2aa2000-06-02 23:26:44 +000069 }
Erik Andersene49d5ec2000-02-08 19:58:47 +000070 argc--;
71 argv++;
Eric Andersen596e5461999-10-07 08:30:23 +000072 }
Erik Andersene49d5ec2000-02-08 19:58:47 +000073
Matt Kraai3e856ce2000-12-01 02:55:13 +000074 return EXIT_SUCCESS;
Eric Andersencc8ed391999-10-05 16:24:54 +000075}