sbase/pwd.c

53 lines
806 B
C
Raw Normal View History

2011-05-23 15:15:19 -04:00
/* See LICENSE file for copyright and license details. */
2015-02-14 15:02:41 -05:00
#include <sys/stat.h>
2011-05-23 15:15:19 -04:00
#include <stdio.h>
#include <stdlib.h>
2011-05-23 15:15:19 -04:00
#include "util.h"
2011-05-28 10:37:42 -04:00
static const char *getpwd(const char *cwd);
2013-06-14 14:20:47 -04:00
static void
usage(void)
{
eprintf("usage: %s [-LP]\n", argv0);
}
2011-05-23 15:15:19 -04:00
int
2011-05-28 10:37:42 -04:00
main(int argc, char *argv[])
2011-05-23 15:15:19 -04:00
{
2013-06-14 14:20:47 -04:00
char *cwd;
2011-05-28 10:37:42 -04:00
char mode = 'L';
2013-06-14 14:20:47 -04:00
ARGBEGIN {
case 'L':
case 'P':
mode = ARGC();
break;
default:
usage();
} ARGEND;
2011-05-28 10:37:42 -04:00
cwd = agetcwd();
puts((mode == 'L') ? getpwd(cwd) : cwd);
2013-06-14 14:20:47 -04:00
2014-10-02 18:46:04 -04:00
return 0;
2011-05-23 15:15:19 -04:00
}
2011-05-28 10:37:42 -04:00
static const char *
2011-05-28 10:37:42 -04:00
getpwd(const char *cwd)
{
const char *pwd;
struct stat cst, pst;
2014-11-19 14:59:37 -05:00
if (!(pwd = getenv("PWD")) || pwd[0] != '/' || stat(pwd, &pst) < 0)
2011-05-28 10:37:42 -04:00
return cwd;
2014-11-19 14:59:37 -05:00
if (stat(cwd, &cst) < 0)
2011-05-28 10:37:42 -04:00
eprintf("stat %s:", cwd);
if (pst.st_dev == cst.st_dev && pst.st_ino == cst.st_ino)
2011-05-28 10:37:42 -04:00
return pwd;
else
return cwd;
}