Lines Matching refs:pwd
0 /* pwd.c - Print working directory.
5 * See http://opengroup.org/onlinepubs/9699919799/utilities/pwd.html
7 USE_PWD(NEWTOY(pwd, ">0LP[-LP]", TOYFLAG_BIN|TOYFLAG_MAYFORK))
10 bool "pwd"
13 usage: pwd [-L|-P]
26 char *s, *pwd = getcwd(0, 0), *PWD;
43 if (s && pwd)
44 if (stat(pwd, &st1) || stat(PWD, &st2) || st1.st_ino != st2.st_ino ||
49 if (s || (s = pwd)) puts(s);
50 free(pwd);