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
Hi,
$ PS2='$(:)'
$ cat <
pgpeMNay_fZT4.pgp
Description: PGP signature
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
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