public inbox for dash@vger.kernel.org
 help / color / mirror / Atom feed
 messages from 2024-04-28 03:56:48 to 2024-11-12 22:38:13 UTC [more...]

[PATCH] Portability of dash to legacy systems, such as AT&T Unix PC
 2024-11-12 22:37 UTC  (9+ messages)
      ` [PATCH] Portability of dash to legacy systems, such as AT&T Unix PC : 01-remove-extraneous
      ` [PATCH] Portability of dash to legacy systems, such as AT&T Unix PC : 02-stat64
      ` [PATCH] Portability of dash to legacy systems, such as AT&T Unix PC : 03-name-max
      ` [PATCH] Portability of dash to legacy systems, such as AT&T Unix PC : 04-mksignames
      ` [PATCH] Portability of dash to legacy systems, such as AT&T Unix PC : 05-sys-headers

set -e not ignored in AND-OR list
 2024-11-10 20:08 UTC  (13+ messages)

exit in traps
 2024-10-25 15:14 UTC  (2+ messages)

`jobs` within command substitution doesn't work
 2024-10-23 20:00 UTC  (4+ messages)

[PATCH 0/1] man: Clarify the `trap` condition `EXIT`
 2024-10-23 19:55 UTC  (2+ messages)
` [PATCH 1/1] "

« echo '"\$z' » — differences between dash and bash in POSIX mode irrespective of xpg_echo
 2024-10-21 20:04 UTC  (5+ messages)
    ` [PATCH] builtin: Keep backslash on undefined escape sequences

doc omission: . searches path
 2024-10-20 20:27 UTC 

Support for bash-like HISTCONTROL or zsh-like HIST_IGNORE_SPACE
 2024-10-06 17:07 UTC 

procargs(): interactivity falsely detected (acc. to POSIX)
 2024-09-27 23:26 UTC 

Signal handler not called when trying to open fifo
 2024-09-26  8:57 UTC  (2+ messages)

Question on $IFS related differences (Was: Question on $@ vs $@$@)
 2024-09-18 21:37 UTC  (6+ messages)

Crash in expandarg
 2024-09-13 22:05 UTC 

Why does the command builtin not circumvent invocation of builtins?
 2024-08-31  1:32 UTC  (4+ messages)
    ` Fwd: "

Question on $@ vs $@$@
 2024-08-27  0:28 UTC  (14+ messages)

[PATCH] histedit: When editing, use `el_set` with `EL_PROMPT_ESC` rather than `EL_PROMPT`
 2024-08-23 22:23 UTC 

IFS bug (maybe)
 2024-08-22 22:36 UTC  (2+ messages)

ANSI escape sequences not being respected in PS1 environment variable when vi or emacs options are enabled
 2024-08-17 23:46 UTC 

[PATCH] bltin/test: align -nt and -ot with POSIX.1-2024
 2024-07-28  3:08 UTC  (4+ messages)
  ` [PATCH v2] "

[PATCH] bltin/test: = and != are strcmp, not strcoll
 2024-07-28  3:06 UTC  (2+ messages)

[PATCH 0/1] adding a test suite
 2024-07-28  2:01 UTC  (3+ messages)
` [PATCH 1/1] add tests

[PATCH] jobs: Add comment about reset_input in forkchild
 2024-07-24 10:26 UTC 

[herbertx/dash] regression in reading variables from pipe for external processes (Issue #8)
 2024-07-24 10:13 UTC  (2+ messages)
  ` [PATCH] eval: Reset input for pipelines

Broken: "parser: Add dollar single quote"
 2024-07-06  3:09 UTC  (4+ messages)
` [PATCH] parser: Do not read past single quote in dollarsq_escape

[BUG] reading from FIFO broken
 2024-07-06  1:46 UTC  (4+ messages)

[PATCH] fix build on systems without memrchr(3)
 2024-07-06  0:59 UTC  (3+ messages)
` [PATCH v2] "

[BUG] 'case' broken for multi-byte characters
 2024-07-03 10:51 UTC  (2+ messages)
` [PATCH] expand: Preserve MBCHAR in argstr when EXP_MBCHAR is set

stdin should be consumed line by line
 2024-06-30  5:11 UTC  (2+ messages)

Field splitting regression on master branch
 2024-06-22 12:19 UTC  (3+ messages)
` [PATCH] expand: Fix leading white space regression in ifsbreakup

Subprocess doesn't get stdin sometimes
 2024-06-16 10:42 UTC  (3+ messages)

[PATCH 0/3] Add dollar single quote
 2024-06-10  6:45 UTC  (4+ messages)
` [PATCH 1/3] parser: Move non-variable case in parsesub to end
` [PATCH 2/3] parser: Merge first and last chkeofmark branches in parsesub
` [PATCH 3/3] parser: Add dollar single quote

[PATCH] parser: Fix PEOF infinite loop in getmbc
 2024-06-09  8:19 UTC 

[PATCH] input: Fix pungetc on PEOF
 2024-06-09  8:18 UTC 

[PATCH] expand: Check d_type in expmeta before recursing
 2024-06-08  3:42 UTC  (3+ messages)
  ` [v2 PATCH] "

[PATCH] expand: Rewrite expmeta meta detection
 2024-06-02  1:32 UTC 

[v3 PATCH 0/3] Improve performance when reading stdin
 2024-06-02  1:31 UTC  (4+ messages)
` [v3 PATCH 1/3] input: Move newline loop into preadbuffer
` [v3 PATCH 2/3] input: Use lseek on stdin when possible
` [v3 PATCH 3/3] input: Use tee(2) for stdin pipe

[v5 PATCH 00/13] Add multi-byte supportAdd multi-byte support
 2024-06-02  1:29 UTC  (14+ messages)
` [v5 PATCH 01/13] shell: Call setlocale
` [v5 PATCH 02/13] shell: Use strcoll instead of strcmp where applicable
` [v5 PATCH 03/13] expand: Count multi-byte characters for VSLENGTH
` [v5 PATCH 04/13] expand: Process multi-byte characters in subevalvar
` [v5 PATCH 05/13] expand: Process multi-byte characters in expmeta
` [v5 PATCH 06/13] expand: Support multi-byte characters during field splitting
` [v5 PATCH 07/13] expand: Add multi-byte support to pmatch
` [v5 PATCH 08/13] input: Allow MB_LEN_MAX calls to pungetc
` [v5 PATCH 09/13] input: Add pgetc_eoa
` [v5 PATCH 10/13] parser: Add support for multi-byte characters
` [v5 PATCH 11/13] input: Always push in setinputfile
` [v5 PATCH 12/13] builtin: Use pgetc in read(1)
` [v5 PATCH 13/13] builtin: Process multi-byte characters "

[PATCH] expand: Fix expmeta resource leakage
 2024-06-01  4:49 UTC 

[PATCH] jobs: Fix resource leak in makejob
 2024-05-26 10:43 UTC 

[PATCH] eval: Fix pipe fd leakage in evalbackcmd
 2024-05-26 10:43 UTC 

[PATCH] memalloc: Force functions to be out-of-line
 2024-05-26 10:42 UTC 

[PATCH] mystring: Add dotdir
 2024-05-26 10:41 UTC 

[PATCH v2] Allow trap to un-ignore SIGINT in asynchronous subshells
 2024-05-26 10:27 UTC  (7+ messages)
` [PATCH v3] Allow trap to un-ignore SIGINT/SIGQUIT in async subshells
    ` [PATCH v4] "

[PATCH] parser: Fix here-doc EOF marker bug with negative chars
 2024-05-24 14:41 UTC 

[PATCH] options: don't error when unsetting OPTIND
 2024-05-21 14:38 UTC  (12+ messages)
` [PATCH] var: Do not add 1 to return value of strchrnul
              ` [PATCH] options: Always reset OPTIND in getoptsreset
                  ` [v2 PATCH] "

[PATCH] shell: Disable fnmatch by default
 2024-05-19 14:36 UTC 

Issue: Document ulimit's "unlimited" limit in manual page
 2024-05-19  9:24 UTC  (2+ messages)
` [PATCH] man: Document the value unlimited for ulimit

[PATCH] man: Remove reference to PS expansion
 2024-05-19  9:16 UTC 

[v2 PATCH 0/3] Improve performance when reading stdin
 2024-05-19  5:23 UTC  (4+ messages)
` [v2 PATCH 1/3] input: Move newline loop into preadbuffer
` [v2 PATCH 2/3] input: Use lseek on stdin when possible
` [v2 PATCH 3/3] input: Use tee(2) for stdin pipe

[v4 PATCH 00/13] Add multi-byte supportAdd multi-byte support
 2024-05-19  5:20 UTC  (14+ messages)
` [v4 PATCH 01/13] shell: Call setlocale
` [v4 PATCH 02/13] shell: Use strcoll instead of strcmp where applicable
` [v4 PATCH 03/13] expand: Count multi-byte characters for VSLENGTH
` [v4 PATCH 04/13] expand: Process multi-byte characters in subevalvar
` [v4 PATCH 05/13] expand: Process multi-byte characters in expmeta
` [v4 PATCH 06/13] expand: Support multi-byte characters during field splitting
` [v4 PATCH 07/13] expand: Add multi-byte support to pmatch
` [v4 PATCH 08/13] input: Allow MB_LEN_MAX calls to pungetc
` [v4 PATCH 09/13] input: Add pgetc_eoa
` [v4 PATCH 10/13] parser: Add support for multi-byte characters
` [v4 PATCH 11/13] input: Always push in setinputfile
` [v4 PATCH 12/13] builtin: Use pgetc in read(1)
` [v4 PATCH 13/13] builtin: Process multi-byte characters "

[PATCH] expand: Add support for caret
 2024-05-19  4:35 UTC 

[PATCH] expand: Always compile test fnmatch and glob
 2024-05-19  4:26 UTC 

[PATCH] memalloc: Use void * instead of pointer
 2024-05-18  0:44 UTC 

[PATCH] Fix non-Linux build
 2024-05-18  0:39 UTC  (2+ messages)

[PATCH 0/3] Improve performance when reading stdin
 2024-05-05  9:24 UTC  (4+ messages)
` [PATCH 1/3] input: Move newline loop into preadbuffer
` [PATCH 2/3] input: Use lseek on stdin when possible
` [PATCH 3/3] input: Use tee(2) for stdin pipe

[v3 PATCH 00/13] Add multi-byte support
 2024-05-05  9:15 UTC  (14+ messages)
` [v3 PATCH 01/13] shell: Call setlocale
` [v3 PATCH 02/13] shell: Use strcoll instead of strcmp where applicable
` [v3 PATCH 03/13] expand: Count multi-byte characters for VSLENGTH
` [v3 PATCH 04/13] expand: Process multi-byte characters in subevalvar
` [v3 PATCH 05/13] expand: Process multi-byte characters in expmeta
` [v3 PATCH 06/13] expand: Support multi-byte characters during field splitting
` [v3 PATCH 07/13] input: Allow MB_LEN_MAX calls to pungetc
` [v3 PATCH 08/13] input: Add pgetc_eoa
` [v3 PATCH 09/13] parser: Add support for multi-byte characters
` [v3 PATCH 10/13] input: Always push in setinputfile
` [v3 PATCH 11/13] memalloc: Use void * instead of pointer
` [v3 PATCH 12/13] builtin: Use pgetc in read(1)
` [v3 PATCH 13/13] builtin: Process multi-byte characters "

[PATCH] redir: Fix double close in dupredirect
 2024-05-04  7:21 UTC 

[PATCH] alias: Mark printalias as noinline
 2024-05-04  5:30 UTC 

[PATCH] Simplify alias storage
 2024-05-04  5:20 UTC  (6+ messages)
      ` [PATCH v2] "

[PATCH] mystring: Add a few more uses of snlfmt
 2024-05-04  5:18 UTC 

[PATCH] input: Fix potential out-of-bounds read in popstring
 2024-05-02 10:22 UTC 

[v2 PATCH] expand: Fix naked backslah leakage
 2024-05-01  9:12 UTC 

[PATCH] Generate signal names at runtime
 2024-04-29 17:17 UTC  (3+ messages)

[PATCH 0/8] Add multi-byte support
 2024-04-29 13:12 UTC  (7+ messages)

[v2 PATCH 0/8] Add multi-byte support
 2024-04-28  3:57 UTC  (7+ messages)
` [v2 PATCH 3/8] expand: Count multi-byte characters for VSLENGTH
` [v2 PATCH 4/8] expand: Process multi-byte characters in subevalvar
` [v2 PATCH 5/8] expand: Process multi-byte characters in expmeta
` [v2 PATCH 6/8] expand: Support multi-byte characters during field splitting
` [v2 PATCH 7/8] input: Allow MB_LEN_MAX calls to pungetc
` [v2 PATCH 8/8] parser: Add support for multi-byte characters


This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox