Files
svr/usr/bin/history_full
2026-01-23 08:55:18 +01:00

14 lines
283 B
Bash
Executable File

#!/bin/bash
history_full ()
{
HIST_FILE=~/.history;
while read LINE; do
if [ -n "$(echo "$LINE" | grep '^#')" ]; then
date -d "$(echo $LINE | sed 's/\#/@/g')";
else
echo "$LINE";
fi;
done < $HIST_FILE
}
history_full "$@"