1994-05-26 06:18:55 +00:00
|
|
|
/*-
|
|
|
|
* Copyright (c) 1991, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed to Berkeley by
|
|
|
|
* Kenneth Almquist.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 4. Neither the name of the University nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef lint
|
1998-05-18 06:44:24 +00:00
|
|
|
#if 0
|
|
|
|
static char sccsid[] = "@(#)cd.c 8.2 (Berkeley) 5/4/95";
|
|
|
|
#endif
|
1994-05-26 06:18:55 +00:00
|
|
|
#endif /* not lint */
|
2002-06-30 05:15:05 +00:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
1994-05-26 06:18:55 +00:00
|
|
|
|
1996-09-01 10:22:36 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <stdlib.h>
|
1996-12-14 06:20:03 +00:00
|
|
|
#include <string.h>
|
1996-09-01 10:22:36 +00:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <errno.h>
|
2002-07-25 09:56:08 +00:00
|
|
|
#include <limits.h>
|
1996-09-01 10:22:36 +00:00
|
|
|
|
1994-05-26 06:18:55 +00:00
|
|
|
/*
|
|
|
|
* The cd and pwd commands.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "shell.h"
|
|
|
|
#include "var.h"
|
|
|
|
#include "nodes.h" /* for jobs.h */
|
|
|
|
#include "jobs.h"
|
|
|
|
#include "options.h"
|
|
|
|
#include "output.h"
|
|
|
|
#include "memalloc.h"
|
|
|
|
#include "error.h"
|
1996-12-14 06:20:03 +00:00
|
|
|
#include "exec.h"
|
1996-09-01 10:22:36 +00:00
|
|
|
#include "redir.h"
|
1994-05-26 06:18:55 +00:00
|
|
|
#include "mystring.h"
|
1996-09-01 10:22:36 +00:00
|
|
|
#include "show.h"
|
1996-12-14 06:20:03 +00:00
|
|
|
#include "cd.h"
|
1994-05-26 06:18:55 +00:00
|
|
|
|
2010-10-13 22:18:03 +00:00
|
|
|
static int cdlogical(char *);
|
|
|
|
static int cdphysical(char *);
|
|
|
|
static int docd(char *, int, int);
|
|
|
|
static char *getcomponent(void);
|
|
|
|
static char *findcwd(char *);
|
|
|
|
static void updatepwd(char *);
|
|
|
|
static char *getpwd(void);
|
|
|
|
static char *getpwd2(void);
|
1994-05-26 06:18:55 +00:00
|
|
|
|
2010-10-13 04:01:01 +00:00
|
|
|
static char *curdir = NULL; /* current working directory */
|
|
|
|
static char *prevdir; /* previous working directory */
|
|
|
|
static char *cdcomppath;
|
1994-05-26 06:18:55 +00:00
|
|
|
|
|
|
|
int
|
2002-05-22 05:15:53 +00:00
|
|
|
cdcmd(int argc, char **argv)
|
1996-09-01 10:22:36 +00:00
|
|
|
{
|
2009-12-27 18:04:05 +00:00
|
|
|
const char *dest;
|
2009-12-24 18:41:14 +00:00
|
|
|
const char *path;
|
1994-05-26 06:18:55 +00:00
|
|
|
char *p;
|
|
|
|
struct stat statb;
|
2011-05-20 22:55:18 +00:00
|
|
|
int ch, phys, print = 0, getcwderr = 0;
|
|
|
|
int rc;
|
2011-05-25 21:38:16 +00:00
|
|
|
int errno1 = ENOENT;
|
1994-05-26 06:18:55 +00:00
|
|
|
|
2002-07-25 10:47:38 +00:00
|
|
|
optreset = 1; optind = 1; opterr = 0; /* initialize getopt */
|
2002-07-25 10:57:39 +00:00
|
|
|
phys = Pflag;
|
2011-05-20 22:55:18 +00:00
|
|
|
while ((ch = getopt(argc, argv, "eLP")) != -1) {
|
2002-05-22 05:15:53 +00:00
|
|
|
switch (ch) {
|
2011-05-20 22:55:18 +00:00
|
|
|
case 'e':
|
|
|
|
getcwderr = 1;
|
|
|
|
break;
|
2002-05-22 05:15:53 +00:00
|
|
|
case 'L':
|
|
|
|
phys = 0;
|
|
|
|
break;
|
|
|
|
case 'P':
|
|
|
|
phys = 1;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
error("unknown option: -%c", optopt);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
argc -= optind;
|
|
|
|
argv += optind;
|
|
|
|
|
|
|
|
if (argc > 1)
|
|
|
|
error("too many arguments");
|
|
|
|
|
|
|
|
if ((dest = *argv) == NULL && (dest = bltinlookup("HOME", 1)) == NULL)
|
1994-05-26 06:18:55 +00:00
|
|
|
error("HOME not set");
|
1994-12-26 13:02:05 +00:00
|
|
|
if (*dest == '\0')
|
|
|
|
dest = ".";
|
1994-05-26 06:18:55 +00:00
|
|
|
if (dest[0] == '-' && dest[1] == '\0') {
|
|
|
|
dest = prevdir ? prevdir : curdir;
|
1995-11-14 01:04:52 +00:00
|
|
|
if (dest)
|
|
|
|
print = 1;
|
|
|
|
else
|
|
|
|
dest = ".";
|
1994-05-26 06:18:55 +00:00
|
|
|
}
|
|
|
|
if (*dest == '/' || (path = bltinlookup("CDPATH", 1)) == NULL)
|
|
|
|
path = nullstr;
|
|
|
|
while ((p = padvance(&path, dest)) != NULL) {
|
1996-09-01 10:22:36 +00:00
|
|
|
if (stat(p, &statb) >= 0 && S_ISDIR(statb.st_mode)) {
|
1994-05-26 06:18:55 +00:00
|
|
|
if (!print) {
|
|
|
|
/*
|
|
|
|
* XXX - rethink
|
|
|
|
*/
|
1998-09-06 21:01:57 +00:00
|
|
|
if (p[0] == '.' && p[1] == '/' && p[2] != '\0')
|
2006-06-12 21:06:00 +00:00
|
|
|
print = strcmp(p + 2, dest);
|
|
|
|
else
|
|
|
|
print = strcmp(p, dest);
|
1994-05-26 06:18:55 +00:00
|
|
|
}
|
2011-05-20 22:55:18 +00:00
|
|
|
rc = docd(p, print, phys);
|
|
|
|
if (rc >= 0)
|
|
|
|
return getcwderr ? rc : 0;
|
2011-05-25 21:38:16 +00:00
|
|
|
if (errno != ENOENT)
|
|
|
|
errno1 = errno;
|
1994-05-26 06:18:55 +00:00
|
|
|
}
|
|
|
|
}
|
2011-05-25 21:38:16 +00:00
|
|
|
error("%s: %s", dest, strerror(errno1));
|
1996-09-01 10:22:36 +00:00
|
|
|
/*NOTREACHED*/
|
|
|
|
return 0;
|
1994-05-26 06:18:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
2002-05-22 05:15:53 +00:00
|
|
|
* Actually change the directory. In an interactive shell, print the
|
1996-12-21 22:09:40 +00:00
|
|
|
* directory name if "print" is nonzero.
|
1994-05-26 06:18:55 +00:00
|
|
|
*/
|
2010-10-13 22:18:03 +00:00
|
|
|
static int
|
2002-05-22 05:15:53 +00:00
|
|
|
docd(char *dest, int print, int phys)
|
|
|
|
{
|
2011-05-20 22:55:18 +00:00
|
|
|
int rc;
|
2002-05-22 05:15:53 +00:00
|
|
|
|
|
|
|
TRACE(("docd(\"%s\", %d, %d) called\n", dest, print, phys));
|
|
|
|
|
|
|
|
/* If logical cd fails, fall back to physical. */
|
2011-05-20 22:55:18 +00:00
|
|
|
if ((phys || (rc = cdlogical(dest)) < 0) && (rc = cdphysical(dest)) < 0)
|
2002-05-22 05:15:53 +00:00
|
|
|
return (-1);
|
|
|
|
|
|
|
|
if (print && iflag && curdir)
|
|
|
|
out1fmt("%s\n", curdir);
|
|
|
|
|
2011-05-20 22:55:18 +00:00
|
|
|
return (rc);
|
2002-05-22 05:15:53 +00:00
|
|
|
}
|
|
|
|
|
2010-10-13 22:18:03 +00:00
|
|
|
static int
|
2002-05-22 05:15:53 +00:00
|
|
|
cdlogical(char *dest)
|
1996-12-14 06:20:03 +00:00
|
|
|
{
|
1998-09-06 21:01:57 +00:00
|
|
|
char *p;
|
|
|
|
char *q;
|
|
|
|
char *component;
|
|
|
|
struct stat statb;
|
|
|
|
int first;
|
|
|
|
int badstat;
|
1996-12-14 06:20:03 +00:00
|
|
|
|
1998-09-06 21:01:57 +00:00
|
|
|
/*
|
|
|
|
* Check each component of the path. If we find a symlink or
|
|
|
|
* something we can't stat, clear curdir to force a getcwd()
|
|
|
|
* next time we get the value of the current directory.
|
|
|
|
*/
|
|
|
|
badstat = 0;
|
|
|
|
cdcomppath = stalloc(strlen(dest) + 1);
|
|
|
|
scopy(dest, cdcomppath);
|
|
|
|
STARTSTACKSTR(p);
|
|
|
|
if (*dest == '/') {
|
|
|
|
STPUTC('/', p);
|
|
|
|
cdcomppath++;
|
|
|
|
}
|
|
|
|
first = 1;
|
|
|
|
while ((q = getcomponent()) != NULL) {
|
|
|
|
if (q[0] == '\0' || (q[0] == '.' && q[1] == '\0'))
|
|
|
|
continue;
|
|
|
|
if (! first)
|
|
|
|
STPUTC('/', p);
|
|
|
|
first = 0;
|
|
|
|
component = q;
|
2010-11-23 22:17:39 +00:00
|
|
|
STPUTS(q, p);
|
1998-09-06 21:01:57 +00:00
|
|
|
if (equal(component, ".."))
|
|
|
|
continue;
|
|
|
|
STACKSTRNUL(p);
|
2002-05-22 05:15:53 +00:00
|
|
|
if (lstat(stackblock(), &statb) < 0) {
|
1998-09-06 21:01:57 +00:00
|
|
|
badstat = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1994-05-26 06:18:55 +00:00
|
|
|
INTOFF;
|
2008-02-24 16:50:55 +00:00
|
|
|
if ((p = findcwd(badstat ? NULL : dest)) == NULL || chdir(p) < 0) {
|
1994-05-26 06:18:55 +00:00
|
|
|
INTON;
|
2002-05-22 05:15:53 +00:00
|
|
|
return (-1);
|
1994-05-26 06:18:55 +00:00
|
|
|
}
|
2008-02-24 16:50:55 +00:00
|
|
|
updatepwd(p);
|
1994-05-26 06:18:55 +00:00
|
|
|
INTON;
|
2002-05-22 05:15:53 +00:00
|
|
|
return (0);
|
1994-05-26 06:18:55 +00:00
|
|
|
}
|
|
|
|
|
2010-10-13 22:18:03 +00:00
|
|
|
static int
|
2002-05-22 05:15:53 +00:00
|
|
|
cdphysical(char *dest)
|
|
|
|
{
|
2008-02-24 16:50:55 +00:00
|
|
|
char *p;
|
2011-05-20 22:55:18 +00:00
|
|
|
int rc = 0;
|
2002-05-22 05:15:53 +00:00
|
|
|
|
|
|
|
INTOFF;
|
2010-11-22 23:49:06 +00:00
|
|
|
if (chdir(dest) < 0) {
|
2002-05-22 05:15:53 +00:00
|
|
|
INTON;
|
|
|
|
return (-1);
|
|
|
|
}
|
2010-11-22 23:49:06 +00:00
|
|
|
p = findcwd(NULL);
|
2011-05-20 22:55:18 +00:00
|
|
|
if (p == NULL) {
|
2010-12-21 20:47:06 +00:00
|
|
|
warning("warning: failed to get name of current directory");
|
2011-05-20 22:55:18 +00:00
|
|
|
rc = 1;
|
|
|
|
}
|
2008-02-24 16:50:55 +00:00
|
|
|
updatepwd(p);
|
2002-05-22 05:15:53 +00:00
|
|
|
INTON;
|
2011-05-20 22:55:18 +00:00
|
|
|
return (rc);
|
2002-05-22 05:15:53 +00:00
|
|
|
}
|
1994-05-26 06:18:55 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Get the next component of the path name pointed to by cdcomppath.
|
|
|
|
* This routine overwrites the string pointed to by cdcomppath.
|
|
|
|
*/
|
2010-10-13 22:18:03 +00:00
|
|
|
static char *
|
2002-02-02 06:50:57 +00:00
|
|
|
getcomponent(void)
|
1996-12-21 22:09:40 +00:00
|
|
|
{
|
1997-04-28 03:06:52 +00:00
|
|
|
char *p;
|
1994-05-26 06:18:55 +00:00
|
|
|
char *start;
|
|
|
|
|
|
|
|
if ((p = cdcomppath) == NULL)
|
|
|
|
return NULL;
|
|
|
|
start = cdcomppath;
|
|
|
|
while (*p != '/' && *p != '\0')
|
|
|
|
p++;
|
|
|
|
if (*p == '\0') {
|
|
|
|
cdcomppath = NULL;
|
|
|
|
} else {
|
|
|
|
*p++ = '\0';
|
|
|
|
cdcomppath = p;
|
|
|
|
}
|
|
|
|
return start;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-10-13 22:18:03 +00:00
|
|
|
static char *
|
2008-02-24 16:50:55 +00:00
|
|
|
findcwd(char *dir)
|
1996-12-21 22:09:40 +00:00
|
|
|
{
|
1994-05-26 06:18:55 +00:00
|
|
|
char *new;
|
|
|
|
char *p;
|
|
|
|
|
1998-09-06 21:01:57 +00:00
|
|
|
/*
|
|
|
|
* If our argument is NULL, we don't know the current directory
|
|
|
|
* any more because we traversed a symbolic link or something
|
|
|
|
* we couldn't stat().
|
|
|
|
*/
|
2009-11-21 14:53:22 +00:00
|
|
|
if (dir == NULL || curdir == NULL)
|
|
|
|
return getpwd2();
|
1994-05-26 06:18:55 +00:00
|
|
|
cdcomppath = stalloc(strlen(dir) + 1);
|
|
|
|
scopy(dir, cdcomppath);
|
|
|
|
STARTSTACKSTR(new);
|
|
|
|
if (*dir != '/') {
|
2010-11-23 22:17:39 +00:00
|
|
|
STPUTS(curdir, new);
|
|
|
|
if (STTOPC(new) == '/')
|
1994-05-26 06:18:55 +00:00
|
|
|
STUNPUTC(new);
|
|
|
|
}
|
|
|
|
while ((p = getcomponent()) != NULL) {
|
|
|
|
if (equal(p, "..")) {
|
|
|
|
while (new > stackblock() && (STUNPUTC(new), *new) != '/');
|
|
|
|
} else if (*p != '\0' && ! equal(p, ".")) {
|
|
|
|
STPUTC('/', new);
|
2010-11-23 22:17:39 +00:00
|
|
|
STPUTS(p, new);
|
1994-05-26 06:18:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (new == stackblock())
|
|
|
|
STPUTC('/', new);
|
|
|
|
STACKSTRNUL(new);
|
2008-02-24 16:50:55 +00:00
|
|
|
return stackblock();
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Update curdir (the name of the current directory) in response to a
|
|
|
|
* cd command. We also call hashcd to let the routines in exec.c know
|
|
|
|
* that the current directory has changed.
|
|
|
|
*/
|
2010-10-13 22:18:03 +00:00
|
|
|
static void
|
2008-02-24 16:50:55 +00:00
|
|
|
updatepwd(char *dir)
|
|
|
|
{
|
|
|
|
hashcd(); /* update command hash table */
|
|
|
|
|
1998-09-06 21:01:57 +00:00
|
|
|
if (prevdir)
|
|
|
|
ckfree(prevdir);
|
|
|
|
prevdir = curdir;
|
2010-11-22 23:49:06 +00:00
|
|
|
curdir = dir ? savestr(dir) : NULL;
|
2001-11-07 23:00:05 +00:00
|
|
|
setvar("PWD", curdir, VEXPORT);
|
|
|
|
setvar("OLDPWD", prevdir, VEXPORT);
|
1994-05-26 06:18:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2002-07-25 09:46:31 +00:00
|
|
|
pwdcmd(int argc, char **argv)
|
1996-09-01 10:22:36 +00:00
|
|
|
{
|
2009-11-21 14:53:22 +00:00
|
|
|
char *p;
|
2002-05-22 05:15:53 +00:00
|
|
|
int ch, phys;
|
1994-05-26 06:18:55 +00:00
|
|
|
|
2002-07-25 10:47:38 +00:00
|
|
|
optreset = 1; optind = 1; opterr = 0; /* initialize getopt */
|
2002-07-25 10:57:39 +00:00
|
|
|
phys = Pflag;
|
2002-05-22 05:15:53 +00:00
|
|
|
while ((ch = getopt(argc, argv, "LP")) != -1) {
|
|
|
|
switch (ch) {
|
|
|
|
case 'L':
|
|
|
|
phys = 0;
|
|
|
|
break;
|
|
|
|
case 'P':
|
|
|
|
phys = 1;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
error("unknown option: -%c", optopt);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
argc -= optind;
|
|
|
|
argv += optind;
|
1994-05-26 06:18:55 +00:00
|
|
|
|
2002-05-22 05:15:53 +00:00
|
|
|
if (argc != 0)
|
|
|
|
error("too many arguments");
|
1998-09-06 21:01:57 +00:00
|
|
|
|
2002-05-22 05:15:53 +00:00
|
|
|
if (!phys && getpwd()) {
|
|
|
|
out1str(curdir);
|
|
|
|
out1c('\n');
|
|
|
|
} else {
|
2009-11-21 14:53:22 +00:00
|
|
|
if ((p = getpwd2()) == NULL)
|
2002-05-22 05:15:53 +00:00
|
|
|
error(".: %s", strerror(errno));
|
2009-11-21 14:53:22 +00:00
|
|
|
out1str(p);
|
2002-05-22 05:15:53 +00:00
|
|
|
out1c('\n');
|
|
|
|
}
|
1998-09-06 21:01:57 +00:00
|
|
|
|
2002-05-22 05:15:53 +00:00
|
|
|
return 0;
|
|
|
|
}
|
1998-09-06 21:01:57 +00:00
|
|
|
|
1994-05-26 06:18:55 +00:00
|
|
|
/*
|
2008-02-24 16:50:55 +00:00
|
|
|
* Get the current directory and cache the result in curdir.
|
1994-05-26 06:18:55 +00:00
|
|
|
*/
|
2010-10-13 22:18:03 +00:00
|
|
|
static char *
|
2002-02-02 06:50:57 +00:00
|
|
|
getpwd(void)
|
1996-12-14 06:20:03 +00:00
|
|
|
{
|
2008-02-24 16:50:55 +00:00
|
|
|
char *p;
|
1998-09-06 21:01:57 +00:00
|
|
|
|
1994-05-26 06:18:55 +00:00
|
|
|
if (curdir)
|
1998-09-06 21:01:57 +00:00
|
|
|
return curdir;
|
2008-02-24 16:50:55 +00:00
|
|
|
|
2009-11-21 14:53:22 +00:00
|
|
|
p = getpwd2();
|
2008-02-24 16:50:55 +00:00
|
|
|
if (p != NULL)
|
|
|
|
curdir = savestr(p);
|
|
|
|
|
|
|
|
return curdir;
|
|
|
|
}
|
|
|
|
|
2009-11-21 14:53:22 +00:00
|
|
|
#define MAXPWD 256
|
|
|
|
|
2008-02-24 16:50:55 +00:00
|
|
|
/*
|
|
|
|
* Return the current directory.
|
|
|
|
*/
|
2010-10-13 22:18:03 +00:00
|
|
|
static char *
|
2009-11-21 14:53:22 +00:00
|
|
|
getpwd2(void)
|
2008-02-24 16:50:55 +00:00
|
|
|
{
|
2009-11-21 14:53:22 +00:00
|
|
|
char *pwd;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = MAXPWD;; i *= 2) {
|
|
|
|
pwd = stalloc(i);
|
|
|
|
if (getcwd(pwd, i) != NULL)
|
2008-02-24 16:50:55 +00:00
|
|
|
return pwd;
|
2009-11-21 14:53:22 +00:00
|
|
|
stunalloc(pwd);
|
|
|
|
if (errno != ERANGE)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2010-04-17 14:35:46 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Initialize PWD in a new shell.
|
|
|
|
* If the shell is interactive, we need to warn if this fails.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
pwd_init(int warn)
|
|
|
|
{
|
|
|
|
char *pwd;
|
|
|
|
struct stat stdot, stpwd;
|
|
|
|
|
|
|
|
pwd = lookupvar("PWD");
|
2009-11-21 14:53:22 +00:00
|
|
|
if (pwd && *pwd == '/' && stat(".", &stdot) != -1 &&
|
|
|
|
stat(pwd, &stpwd) != -1 &&
|
|
|
|
stdot.st_dev == stpwd.st_dev &&
|
|
|
|
stdot.st_ino == stpwd.st_ino) {
|
2010-04-17 14:35:46 +00:00
|
|
|
if (curdir)
|
|
|
|
ckfree(curdir);
|
|
|
|
curdir = savestr(pwd);
|
1998-09-06 21:01:57 +00:00
|
|
|
}
|
2010-04-17 14:35:46 +00:00
|
|
|
if (getpwd() == NULL && warn)
|
|
|
|
out2fmt_flush("sh: cannot determine working directory\n");
|
|
|
|
setvar("PWD", curdir, VEXPORT);
|
1994-05-26 06:18:55 +00:00
|
|
|
}
|