1 /* print the hexadecimal identifier for the current host
3 Copyright (C) 1997, 1999, 2000, 2001, 2002, 2003, 2004 Free
4 Software Foundation, Inc.
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software Foundation,
18 Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
20 /* Written by Jim Meyering. */
25 #include <sys/types.h>
28 #include "long-options.h"
32 /* The official name of this program (e.g., no `g' prefix). */
33 #define PROGRAM_NAME "hostid"
35 #define AUTHORS "Jim Meyering"
37 /* The name this program was run with, for error messages. */
43 if (status
!= EXIT_SUCCESS
)
44 fprintf (stderr
, _("Try `%s --help' for more information.\n"),
51 Print the numeric identifier (in hexadecimal) for the current host.\n\
54 program_name
, program_name
);
55 fputs (HELP_OPTION_DESCRIPTION
, stdout
);
56 fputs (VERSION_OPTION_DESCRIPTION
, stdout
);
57 printf (_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT
);
63 main (int argc
, char **argv
)
67 initialize_main (&argc
, &argv
);
68 program_name
= argv
[0];
69 setlocale (LC_ALL
, "");
70 bindtextdomain (PACKAGE
, LOCALEDIR
);
73 atexit (close_stdout
);
75 parse_long_options (argc
, argv
, PROGRAM_NAME
, GNU_PACKAGE
, VERSION
,
76 usage
, AUTHORS
, (char const *) NULL
);
77 if (getopt_long (argc
, argv
, "", NULL
, NULL
) != -1)
82 error (0, 0, _("extra operand %s"), quote (argv
[optind
]));
88 /* POSIX says gethostid returns a "32-bit identifier" but is silent
89 whether it's sign-extended. Turn off any sign-extension. This
90 is a no-op unless unsigned int is wider than 32 bits. */
93 printf ("%08x\n", id
);