aboutsummaryrefslogtreecommitdiff
path: root/bin/sh
Commit message (Expand)AuthorAgeFilesLines
* sh: Expand here documents in the current process.Jilles Tjoelker2013-02-035-24/+48
* sh: Prefer our character classification functions to <ctype.h>.Jilles Tjoelker2013-01-312-3/+2
* sh: Show negated commands (!) in jobs output.Jilles Tjoelker2013-01-311-0/+4
* Add FILES section.Joel Dahl2013-01-221-2/+14
* Change the $ENV example to use .shrc instead of .shinit. This is consistentJoel Dahl2013-01-201-3/+3
* sh: Move some stackmarks to fix high memory usage in some loops.Jilles Tjoelker2013-01-201-11/+5
* sh: Remove mkinit's initialization routine.Jilles Tjoelker2013-01-205-35/+12
* sh: Replace an mkinit use with an initialization.Jilles Tjoelker2013-01-191-10/+5
* sh: Simplify cd-hash interaction.Jilles Tjoelker2013-01-142-40/+15
* sh: Pass $? to command substitution containing compound/multiple commands.Jilles Tjoelker2013-01-141-2/+1
* sh: Fix crash when parsing '{ } &'.Jilles Tjoelker2013-01-131-2/+2
* sh: Don't lose $? when backquoted command ends with semicolon or newline.Jilles Tjoelker2013-01-131-1/+2
* sh: Prefer strsignal() to accessing sys_siglist directly.Jilles Tjoelker2012-12-251-8/+13
* sh: Detect and flag write errors on stdout in builtins.Jilles Tjoelker2012-12-123-0/+22
* sh: Remove an unused variable.Jilles Tjoelker2012-11-142-2/+0
* sh: Forward-declare struct alias instead of giving up type safety via void *Jilles Tjoelker2012-11-112-4/+5
* sh: Fix two issues when an alias is redefined:Jilles Tjoelker2012-11-081-0/+11
* sh: Change cmdtype in tblentry from short to signed char.Jilles Tjoelker2012-11-051-1/+1
* sh: Use C99 flexible array instead of accessing array beyond bounds.Jilles Tjoelker2012-11-031-3/+2
* mdoc: don't nest displays. The markup here isn't adding anything anyway.Joel Dahl2012-10-141-2/+2
* sh: Prefer internal nextopt() to libc getopt().Jilles Tjoelker2012-09-155-83/+37
* sh: Reduce code duplication: use setinputfile instead of open/setinputfdJilles Tjoelker2012-09-141-8/+1
* Minor mdoc fix.Joel Dahl2012-09-111-1/+2
* sh: Remove XXX comment about removing nextopt().Jilles Tjoelker2012-09-081-4/+0
* sh: Fix EINTR race condition in "wait" and "set -T" using sigsuspend().Jilles Tjoelker2012-07-293-4/+49
* sh: Do not ask for stopped/continued processes if we do not need themJilles Tjoelker2012-07-281-6/+5
* sh: Inline waitproc() into its only caller.Jilles Tjoelker2012-07-281-22/+9
* sh: Track continued jobs (even if not continued by bg or fg).Jilles Tjoelker2012-07-281-3/+8
* sh: Reset pendingsigs before checking pending traps, not after.Jilles Tjoelker2012-07-151-1/+1
* sh: Remove unused variable in_dowait.Jilles Tjoelker2012-07-152-4/+0
* sh: Expand assignment-like words specially for export/readonly/local.Jilles Tjoelker2012-07-154-4/+79
* Merge libedit adjustment from NetBSD.Pedro F. Giffuni2012-07-111-1/+1
* Work better with how make/bmake works:Marcel Moolenaar2012-05-242-9/+9
* sh: Remove an unused header.Jilles Tjoelker2012-05-151-1/+0
* Minor mdoc nits.Joel Dahl2012-05-131-2/+2
* mdoc: fix column names, indentation, column separation within each row, andJoel Dahl2012-04-071-1/+1
* sh: Fix build with -DDEBUG=2.Jilles Tjoelker2012-04-021-2/+2
* Remove trailing whitespace per mdoc lint warningEitan Adler2012-03-291-1/+1
* Remove superfluous paragraph macro.Joel Dahl2012-03-251-1/+0
* sh: Make 'hash' return 1 if at least one utility is not found.Jilles Tjoelker2012-02-111-8/+12
* sh: Fix swapped INTON/INTOFF.Jilles Tjoelker2012-02-041-2/+2
* sh: Use vfork in a few common cases.Jilles Tjoelker2012-02-045-0/+64
* Add prototypes, ANSIfy functions definitions to reduce WARNS=6 output.Philippe Charnier2012-01-255-5/+6
* sh: Fix $? in the first command of a 'for'.Jilles Tjoelker2012-01-221-1/+4
* sh: Remove "kill" example function, which is superseded by the kill builtinJilles Tjoelker2012-01-211-49/+0
* sh: Fix execution of multiple statements in a trap when evalskip is setJean-Sébastien Pédron2012-01-163-2/+34
* sh: Fix some bugs with exit status from case containing ;&.Jilles Tjoelker2012-01-151-9/+24
* sh: Fix two bugs with case and exit status:Jilles Tjoelker2012-01-151-1/+3
* sh: Change input buffer size from 1023 to 1024.Jilles Tjoelker2012-01-141-6/+6
* sh: Fix out of bounds array access when trap is used with an invalid signal.Jilles Tjoelker2012-01-141-2/+2