fixed bash prompt hack: now it ignores rc (thanks, straintcmp)

This commit is contained in:
Kjistóf 2017-10-20 12:34:56 +02:00
parent 64f673c00b
commit c76d7b350e
1 changed files with 4 additions and 4 deletions

View File

@ -45,10 +45,10 @@ function wait()
function prompt()
{
invalidcmd="somethingthatshouldbetotallynotacommandinanygivenenvironment"
expPS1=$(echo $invalidcmd |
bash -i 2>&1 |
grep $invalidcmd |
head -n 1 |
expPS1=$(echo $invalidcmd |
bash --norc -i 2>&1 |
grep $invalidcmd |
head -n 1 |
sed "s/$invalidcmd//g")
printf "$expPS1"
}