pull/495/merge
miles.zhaof 2024-01-06 15:13:20 +08:00 committed by GitHub
commit 5857f731df
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 1 deletions

View File

@ -35,5 +35,13 @@ else
fi
# Stash the new history each time a command runs.
export PROMPT_COMMAND="$PROMPT_COMMAND;history -a"
#export PROMPT_COMMAND="$PROMPT_COMMAND;history -a"
if [[ -n "$PROMPT_COMMAND" ]]
then
PROMPT_COMMAND=`echo $PROMPT_COMMAND|sed -e 's/;\s*$//g'`
export PROMPT_COMMAND="$PROMPT_COMMAND;history -a;"
else
export PROMPT_COMMAND="history -a;"
fi
```