Every once in a while I export my bash history to an external file. On occasion I would like to add export HISTTIMEFORMAT='%F %T ' so the time/date shows in the output, although it never appears in the file after I envoke the command. I know that you can permanently add the environment variables to your .bash_profile, but I just want to use it temporarily for when I use the command below. I've tried it like this:
# export HISTTIMEFORMAT='%F %T ' | grep -v "^#" $HISTFILE > ~/path/to/output
with no luck showing the time/date stamp.