Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question

2 Answers

up vote 1 down vote accepted

Use:

HISTTIMEFORMAT='%F %T ' history | grep -v "^#" > ~/path/to/output

Note: commands that were in your history from past shells will not contain proper times unless HISTTIMEFORMAT was set to some value during these shells.

share|improve this answer
that works! thank you :) – Ned Schneebly Jan 7 at 19:33

it is bash that needs the environment variable:

env HISTTIMEFORMAT='%F %T ' bash -c 'command args'
share|improve this answer
Your version didn't work for me; maybe I'm not using the command args properly? the example jeberle posted seems to work though — thanks! – Ned Schneebly Jan 7 at 19:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.