2011-05-23 01:36:34 +00:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
2011-05-24 11:56:38 +00:00
|
|
|
#include <libgen.h>
|
2011-05-23 01:36:34 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2013-03-05 20:35:55 +00:00
|
|
|
|
2011-05-23 01:36:34 +00:00
|
|
|
#include "util.h"
|
|
|
|
|
2012-05-15 12:32:56 +00:00
|
|
|
static void usage(void);
|
2012-04-23 13:50:47 +00:00
|
|
|
|
2013-03-05 20:35:55 +00:00
|
|
|
void
|
|
|
|
usage(void)
|
|
|
|
{
|
|
|
|
eprintf("usage: %s name [suffix]\n", argv0);
|
|
|
|
}
|
|
|
|
|
2011-05-23 01:36:34 +00:00
|
|
|
int
|
|
|
|
main(int argc, char *argv[])
|
|
|
|
{
|
2014-11-13 14:24:26 +00:00
|
|
|
char *s, *p;
|
2012-04-23 13:50:47 +00:00
|
|
|
|
|
|
|
ARGBEGIN {
|
|
|
|
default:
|
2012-05-15 12:32:56 +00:00
|
|
|
usage();
|
2012-04-23 13:50:47 +00:00
|
|
|
} ARGEND;
|
|
|
|
|
2014-11-13 17:29:30 +00:00
|
|
|
if (argc < 1)
|
2012-05-15 12:32:56 +00:00
|
|
|
usage();
|
2012-04-23 13:50:47 +00:00
|
|
|
|
2012-04-23 14:32:41 +00:00
|
|
|
s = basename(argv[0]);
|
2014-11-13 17:29:30 +00:00
|
|
|
if (argc == 2) {
|
2014-11-13 14:24:26 +00:00
|
|
|
p = strstr(s, argv[1]);
|
|
|
|
if (p && p[strlen(p)] == '\0')
|
|
|
|
*p = '\0';
|
2011-05-23 01:36:34 +00:00
|
|
|
}
|
2012-04-23 14:32:41 +00:00
|
|
|
puts(s);
|
2014-10-02 22:46:04 +00:00
|
|
|
return 0;
|
2011-05-23 01:36:34 +00:00
|
|
|
}
|