2011-05-22 21:36:34 -04:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
2011-05-24 07:56:38 -04:00
|
|
|
#include <libgen.h>
|
2011-05-22 21:36:34 -04:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
2013-03-05 15:35:55 -05:00
|
|
|
|
2011-05-22 21:36:34 -04:00
|
|
|
#include "util.h"
|
|
|
|
|
2015-02-28 13:33:33 -05:00
|
|
|
static void
|
2013-03-05 15:35:55 -05:00
|
|
|
usage(void)
|
|
|
|
{
|
2015-02-01 13:26:49 -05:00
|
|
|
eprintf("usage: %s path [suffix]\n", argv0);
|
2013-03-05 15:35:55 -05:00
|
|
|
}
|
|
|
|
|
2011-05-22 21:36:34 -04:00
|
|
|
int
|
|
|
|
main(int argc, char *argv[])
|
|
|
|
{
|
2015-02-28 08:48:44 -05:00
|
|
|
ssize_t off;
|
2014-12-08 07:14:13 -05:00
|
|
|
char *p;
|
2012-04-23 09:50:47 -04:00
|
|
|
|
|
|
|
ARGBEGIN {
|
|
|
|
default:
|
2012-05-15 08:32:56 -04:00
|
|
|
usage();
|
2012-04-23 09:50:47 -04:00
|
|
|
} ARGEND;
|
|
|
|
|
2015-02-28 08:48:44 -05:00
|
|
|
if (argc != 1 && argc != 2)
|
2012-05-15 08:32:56 -04:00
|
|
|
usage();
|
2012-04-23 09:50:47 -04:00
|
|
|
|
2015-02-28 08:48:44 -05:00
|
|
|
p = basename(argv[0]);
|
|
|
|
if (argc == 2) {
|
|
|
|
off = strlen(p) - strlen(argv[1]);
|
|
|
|
if (off > 0 && !strcmp(p + off, argv[1]))
|
|
|
|
p[off] = '\0';
|
2011-05-22 21:36:34 -04:00
|
|
|
}
|
2014-12-08 07:14:13 -05:00
|
|
|
puts(p);
|
2015-02-28 08:48:44 -05:00
|
|
|
|
2014-10-02 18:46:04 -04:00
|
|
|
return 0;
|
2011-05-22 21:36:34 -04:00
|
|
|
}
|