2000-02-08 19:58:47 +00:00
|
|
|
/* vi: set sw=4 ts=4: */
|
1999-10-07 08:30:23 +00:00
|
|
|
/*
|
|
|
|
* Mini touch implementation for busybox
|
|
|
|
*
|
1999-10-20 22:08:37 +00:00
|
|
|
*
|
2001-01-27 09:33:39 +00:00
|
|
|
* Copyright (C) 1999,2000,2001 by Lineo, inc.
|
1999-10-20 22:08:37 +00:00
|
|
|
* Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
|
1999-10-07 08:30:23 +00:00
|
|
|
*
|
|
|
|
* 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 16:24:54 +00:00
|
|
|
#include <stdio.h>
|
1999-10-07 08:30:23 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <fcntl.h>
|
1999-10-05 16:24:54 +00:00
|
|
|
#include <utime.h>
|
1999-10-07 08:30:23 +00:00
|
|
|
#include <errno.h>
|
2001-01-27 08:24:39 +00:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <stdlib.h>
|
2001-02-20 06:14:08 +00:00
|
|
|
#include "busybox.h"
|
1999-10-07 08:30:23 +00:00
|
|
|
|
2000-02-08 19:58:47 +00:00
|
|
|
extern int touch_main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
int fd;
|
|
|
|
int create = TRUE;
|
1999-10-07 08:30:23 +00:00
|
|
|
|
2000-02-08 19:58:47 +00:00
|
|
|
/* Parse options */
|
2000-06-02 23:26:44 +00:00
|
|
|
while (--argc > 0 && **(++argv) == '-') {
|
|
|
|
while (*(++(*argv))) {
|
2000-02-08 19:58:47 +00:00
|
|
|
switch (**argv) {
|
|
|
|
case 'c':
|
|
|
|
create = FALSE;
|
|
|
|
break;
|
|
|
|
default:
|
2001-02-14 21:23:06 +00:00
|
|
|
show_usage();
|
2000-02-08 19:58:47 +00:00
|
|
|
}
|
2000-06-02 23:26:44 +00:00
|
|
|
}
|
1999-10-07 08:30:23 +00:00
|
|
|
}
|
|
|
|
|
2000-06-02 23:26:44 +00:00
|
|
|
if (argc < 1) {
|
2001-02-14 21:23:06 +00:00
|
|
|
show_usage();
|
2000-06-02 23:26:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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)
|
2000-12-01 02:55:13 +00:00
|
|
|
return EXIT_SUCCESS;
|
2000-06-02 23:26:44 +00:00
|
|
|
else {
|
2000-12-18 03:08:29 +00:00
|
|
|
perror_msg_and_die("%s", *argv);
|
2000-06-02 23:26:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
close(fd);
|
|
|
|
if (utime(*argv, NULL)) {
|
2000-12-18 03:08:29 +00:00
|
|
|
perror_msg_and_die("%s", *argv);
|
2000-02-08 19:58:47 +00:00
|
|
|
}
|
2000-06-02 23:26:44 +00:00
|
|
|
argc--;
|
|
|
|
argv++;
|
2000-02-08 19:58:47 +00:00
|
|
|
}
|
2000-06-02 23:26:44 +00:00
|
|
|
|
2000-12-01 02:55:13 +00:00
|
|
|
return EXIT_SUCCESS;
|
2000-02-08 19:58:47 +00:00
|
|
|
}
|