1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-06-10 19:56:39 +02:00
Files
coreutils/src/true.c
T

73 lines
2.0 KiB
C
Raw Normal View History

2003-01-03 21:38:27 +00:00
/* Exit with a status code indicating success.
Copyright (C) 1999-2003 Free Software Foundation, Inc.
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, 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-08-04 11:14:55 +00:00
#include <config.h>
#include <stdio.h>
#include <sys/types.h>
#include "system.h"
#include "version-etc.h"
2000-05-07 14:47:44 +00:00
#include "closeout.h"
1999-08-04 11:14:55 +00:00
#define PROGRAM_NAME "true"
2003-01-03 21:38:27 +00:00
#define AUTHORS "Jim Meyering"
1999-08-04 11:14:55 +00:00
/* The name this program was run with. */
char *program_name;
void
usage (int status)
{
printf (_("\
Usage: %s [ignored command line arguments]\n\
1999-08-04 11:14:55 +00:00
or: %s OPTION\n\
Exit with a status code indicating success.\n\
\n\
These option names may not be abbreviated.\n\
1999-08-04 11:14:55 +00:00
\n\
"),
program_name, program_name);
fputs (HELP_OPTION_DESCRIPTION, stdout);
fputs (VERSION_OPTION_DESCRIPTION, stdout);
printf (_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT);
1999-08-04 11:14:55 +00:00
exit (status);
}
1999-07-31 17:44:02 +00:00
int
1999-08-04 11:14:55 +00:00
main (int argc, char **argv)
1999-07-31 17:44:02 +00:00
{
2003-06-17 18:13:23 +00:00
initialize_main (&argc, &argv);
1999-08-04 11:14:55 +00:00
program_name = argv[0];
setlocale (LC_ALL, "");
bindtextdomain (PACKAGE, LOCALEDIR);
textdomain (PACKAGE);
atexit (close_stdout);
1999-08-04 11:14:55 +00:00
/* Recognize --help or --version only if it's the only command-line
argument and if POSIXLY_CORRECT is not set. */
if (argc == 2 && getenv ("POSIXLY_CORRECT") == NULL)
{
if (STREQ (argv[1], "--help"))
usage (EXIT_SUCCESS);
if (STREQ (argv[1], "--version"))
2002-07-24 08:24:12 +00:00
version_etc (stdout, PROGRAM_NAME, GNU_PACKAGE, VERSION, AUTHORS);
1999-08-04 11:14:55 +00:00
}
exit (EXIT_SUCCESS);
1999-07-31 17:44:02 +00:00
}