hishtory/client/lib/config.sh

29 lines
719 B
Bash
Raw Normal View History

2022-01-10 01:39:13 +01:00
# This script should be sourced inside of .bashrc to integrate bash with hishtory
# Implementation of PreCommand and PostCommand based on https://jichu4n.com/posts/debug-trap-and-prompt_command-in-bash/
function PreCommand() {
if [ -z "$HISHTORY_AT_PROMPT" ]; then
return
fi
unset HISHTORY_AT_PROMPT
# Run before every command
HISHTORY_START_TIME=`date +%s%N`
}
trap "PreCommand" DEBUG
HISHTORY_FIRST_PROMPT=1
function PostCommand() {
2022-04-08 07:53:39 +02:00
EXIT_CODE=$?
2022-01-10 01:39:13 +01:00
HISHTORY_AT_PROMPT=1
if [ -n "$HISHTORY_FIRST_PROMPT" ]; then
unset HISHTORY_FIRST_PROMPT
return
fi
# Run after every prompt
2022-04-08 07:53:39 +02:00
(hishtory saveHistoryEntry $EXIT_CODE "`history 1`" $HISHTORY_START_TIME &)
2022-01-10 01:39:13 +01:00
}
PROMPT_COMMAND="PostCommand"