| Commit message (Expand) | Author | Age | Files | Lines |
| * | Remove $FreeBSD$: one-line .c pattern | Warner Losh | 2023-08-16 | 1 | -2/+0 |
| * | sh: Fix rare memory leak with SIGINT | Jilles Tjoelker | 2020-01-01 | 1 | -1/+4 |
| * | sh: Don't treat % specially in CDPATH | Jilles Tjoelker | 2018-07-15 | 1 | -1/+1 |
| * | sh: Ignore error when cd writes the directory actually switched to. | Jilles Tjoelker | 2017-06-25 | 1 | -1/+10 |
| * | Renumber copyright clause 4 | Warner Losh | 2017-02-28 | 1 | -1/+1 |
| * | sh: Remove a global variable from cd.c. | Jilles Tjoelker | 2016-01-24 | 1 | -14/+15 |
| * | sh: Use OLDPWD shell variable for 'cd -'. | Jilles Tjoelker | 2016-01-23 | 1 | -10/+9 |
| * | sh: Prefer "" to nullstr where possible. | Jilles Tjoelker | 2015-02-15 | 1 | -1/+1 |
| * | sh: Add stsavestr(), like savestr() but allocates using stalloc(). | Jilles Tjoelker | 2015-02-15 | 1 | -8/+2 |
| * | sh: Prefer memcpy() to strcpy() in most cases. Remove the scopy macro. | Jilles Tjoelker | 2013-11-30 | 1 | -4/+8 |
| * | sh: Prefer internal nextopt() to libc getopt(). | Jilles Tjoelker | 2012-09-15 | 1 | -19/+7 |
| * | sh: Properly show "Not a directory" error in cd builtin. | Jilles Tjoelker | 2012-01-13 | 1 | -1/+6 |
| * | sh: Fix duplicate prototypes for builtins. | Jilles Tjoelker | 2011-06-13 | 1 | -0/+1 |
| * | sh: Correct criterion for using CDPATH in cd. | Jilles Tjoelker | 2011-05-27 | 1 | -1/+4 |
| * | sh: Show errno messages in cd. | Jilles Tjoelker | 2011-05-25 | 1 | -1/+4 |
| * | sh: Implement the cd -e flag proposed for the next POSIX issue. | Jilles Tjoelker | 2011-05-20 | 1 | -8/+17 |
| * | sh: Add a function to print warnings (with command name and newline). | Jilles Tjoelker | 2010-12-21 | 1 | -1/+1 |
| * | sh: Code size optimizations to "stack string" memory allocation: | Jilles Tjoelker | 2010-11-23 | 1 | -8/+4 |
| * | sh: Fix confusing behaviour if chdir succeeded but getcwd failed in cd -P. | Jilles Tjoelker | 2010-11-22 | 1 | -2/+5 |
| * | In the spirit of r90111, depend on c89 and remove the "STATIC" macro | David E. O'Brien | 2010-10-13 | 1 | -16/+16 |
| * | Consistently use "STATIC" for all functions in order to be able to set | David E. O'Brien | 2010-10-13 | 1 | -3/+3 |
| * | sh: On startup of the shell, use PWD from the environment if it is valid. | Jilles Tjoelker | 2010-04-17 | 1 | -5/+22 |
| * | sh: Various warning fixes (from WARNS=6 NO_WERROR=1): | Jilles Tjoelker | 2009-12-27 | 1 | -1/+1 |
| * | sh: Constify various strings. | Jilles Tjoelker | 2009-12-24 | 1 | -1/+1 |
| * | Handle current work directories of arbitrary length. The argument to cd | Stefan Farfeleder | 2009-11-21 | 1 | -22/+29 |
| * | Split updatepwd() into two smaller functions. The first one, findpwd(), | Stefan Farfeleder | 2008-02-24 | 1 | -38/+45 |
| * | Don't strip a leading ./ from the path for the cd builtin to avoid interpreting | Stefan Farfeleder | 2006-06-12 | 1 | -2/+3 |
| * | Remove clause 3 from the UCB licenses. | Mark Murray | 2004-04-06 | 1 | -4/+0 |
| * | Changes following CScout analysis: | Diomidis Spinellis | 2003-07-05 | 1 | -2/+2 |
| * | Add a -P/-o physical option which behaves similarly to bash/ksh's options | Tim J. Robbins | 2002-07-25 | 1 | -2/+2 |
| * | Set opterr to zero to avoid duplicate warnings from getopt(3) for unknown | Tim J. Robbins | 2002-07-25 | 1 | -2/+2 |
| * | Use PATH_MAX instead of a local guess at it, which happened to be incorrect. | Tim J. Robbins | 2002-07-25 | 1 | -4/+3 |
| * | pwdcmd()'s argc and argv arguments are no longer unused, remove __unused. | Tim J. Robbins | 2002-07-25 | 1 | -1/+1 |
| * | Remove broken and incomplete support for old releases of System V, | Tim J. Robbins | 2002-07-19 | 1 | -55/+0 |
| * | Consistently use FBSDID | David E. O'Brien | 2002-06-30 | 1 | -2/+2 |
| * | Bring back the cd -L and -P options from revision 1.24, but try harder not | Tim J. Robbins | 2002-05-22 | 1 | -33/+105 |
| * | Temporarily back out revision 1.24; it seems to handle the case where the | Tim J. Robbins | 2002-05-22 | 1 | -78/+22 |
| * | Add the SUSv3 -L and -P options to the cd and pwd builtin utilities. `Logical' | Tim J. Robbins | 2002-05-20 | 1 | -22/+78 |
| * | Remove a small, annoying, nit I ran in to editing this file, a lone tab | Juli Mallett | 2002-05-19 | 1 | -1/+1 |
| * | o __P has been reoved | Warner Losh | 2002-02-02 | 1 | -16/+9 |
| * | Don't call setvar() with the VTEXTFIXED flag. A copy is created by | Tor Egge | 2001-11-07 | 1 | -4/+4 |
| * | Include strerror(errno) in error messages after failed system calls. | Martin Cracauer | 1999-11-29 | 1 | -1/+1 |
| * | $Id$ -> $FreeBSD$ | Peter Wemm | 1999-08-27 | 1 | -1/+1 |
| * | Don't blindly eliminate `..' and the previous pathname component. | Tor Egge | 1998-09-06 | 1 | -17/+156 |
| * | Add rcsid. Spelling. | Philippe Charnier | 1998-05-18 | 1 | -3/+5 |
| * | Use the __unused attribute where warranted. | Steve Price | 1997-05-19 | 1 | -5/+5 |
| * | Nuke register keyword usage and #if -> #ifdef. | Steve Price | 1997-04-28 | 1 | -2/+2 |
| * | Revert $FreeBSD$ to $Id$ | Peter Wemm | 1997-02-22 | 1 | -1/+1 |
| * | Make the long-awaited change from $Id$ to $FreeBSD$ | Jordan K. Hubbard | 1997-01-14 | 1 | -1/+1 |
| * | Make sh(1) think and be in the same place at the same time. This closes | Steve Price | 1997-01-04 | 1 | -15/+11 |