from Debian's fileutils_4.1-10
[platform/upstream/coreutils.git] / src / unlink.c
1 /* `unlink` utility for GNU.
2    Copyright (C) 2001, 2002 Free Software Foundation, Inc.
3
4    This program is free software; you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation; either version 2, or (at your option)
7    any later version.
8
9    This program is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12    GNU General Public License for more details.
13
14    You should have received a copy of the GNU General Public License
15    along with this program; if not, write to the Free Software Foundation,
16    Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
17
18 /* Written by Michael Stone */
19
20 /* Implementation overview:
21
22    Simply calls the system 'unlink' function */
23
24 #include <config.h>
25 #include <stdio.h>
26 #include <getopt.h>
27 #include <sys/types.h>
28 #include <assert.h>
29
30 #include "system.h"
31 #include "error.h"
32 #include "quote.h"
33
34 /* The official name of this program (e.g., no `g' prefix).  */
35 #define PROGRAM_NAME "unlink"
36
37 #define AUTHORS "Michael Stone"
38
39 /* Name this program was run with.  */
40 char *program_name;
41
42 static struct option const long_opts[] =
43 {
44   {GETOPT_HELP_OPTION_DECL},
45   {GETOPT_VERSION_OPTION_DECL},
46   {NULL, 0, NULL, 0}
47 };
48
49 void
50 usage (int status)
51 {
52   if (status != 0)
53     fprintf (stderr, _("Try `%s --help' for more information.\n"),
54              program_name);
55   else
56     {
57       printf (_("Usage: %s [OPTION]... FILE\n"), program_name);
58       printf (_("\
59 unlink the FILE.\n\
60 \n\
61       --help            display this help and exit\n\
62       --version         output version information and exit\n\
63 \n\
64 "),
65               program_name, program_name);
66       puts (_("\nReport bugs to <bug-fileutils@gnu.org>."));
67     }
68   exit (status);
69 }
70
71 int
72 main (int argc, char **argv)
73 {
74   int fail = 0;
75   int c;
76
77   program_name = argv[0];
78   setlocale (LC_ALL, "");
79   bindtextdomain (PACKAGE, LOCALEDIR);
80   textdomain (PACKAGE);
81
82   atexit (close_stdout);
83
84   while ((c = getopt_long (argc, argv, "", long_opts, NULL)) != -1)
85     {
86       switch (c)
87         {
88         case 0:         /* Long option.  */
89           break;
90         case_GETOPT_HELP_CHAR;
91         case_GETOPT_VERSION_CHAR (PROGRAM_NAME, AUTHORS);
92         default:
93           usage (1);
94         }
95     }
96
97   if (optind+1 > argc)
98     {
99       error (0, 0, _("too few arguments"));
100       usage (1);
101     }
102
103   if (optind+1 < argc)
104     {
105       error (0, 0, _("too many arguments"));
106       usage (1);
107     }
108
109   if (unlink(argv[optind]) != 0)
110     {
111       fail = 1;
112       error (0, errno, _("unlinking %s"), quote(argv[optind]));
113     }
114
115   exit (fail);
116 }