revert-all-at-newline history segfault

2014-06-25 Thread Jared Yanovich
Hi, with the following in .inputrc: set revert-all-at-newline on a segfault can be produced in bash: echo $'set -o emacs\npwd\n\cp\ca\cd\ce\cu./sort\n\cp\ca#\npwd\n\cp\ca\cd\ce\cp\cp' | ./bash --norc -i bash-4.3$ set -o emacs bash-4.3$ pwd /Users/yanovich/b/bash bash-4.3$ ./sort

PS2 command substitution segfault

2014-04-17 Thread Jared Yanovich
Hi, $ PS2='$(:)' $ cat < pgpeMNay_fZT4.pgp Description: PGP signature

possible bash 4.0.10 bug: command substitution in PROMPT_COMMAND

2009-04-10 Thread Jared Yanovich
Hi, I upgraded to bash 4.0.10 and my PS1 prompt is no longer displaying anything at all. Here is a contrived .bashrc: .bashrc: BEGIN f() { $(:) PS1='$ ' } PROMPT_COMMAND=f END However, it works if I take the command s

alias bug?

2006-11-13 Thread Jared Yanovich
Is this a bug, or are aliases supposed to work this way? [EMAIL PROTECTED] bash -version GNU bash, version 3.00.16(1)-release (i386-redhat-linux-gnu) Copyright (C) 2004 Free Software Foundation, Inc. [EMAIL PROTECTED] alias t=test [EMAIL PROTECTED] echo t t [EMAIL PROTECTED] alias echo='echo ' [EM