HISTTIMEFORMAT plain doesn't work Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern) 2019 Community Moderator Election Results Why I closed the “Why is Kali so hard” questionsource .bashrc command doesn't workWhy doesn't this regex work?Changing HISTTIMEFORMAT leaves entries with incorrect dateHISTTIMEFORMAT syntaxrun startup.sh doesn't workbase10 doesn't work+ with sed doesn't workStderr redirection doesn't workWhy doesn't source lib/* work?HISTTIMEFORMAT and deleting matching history entries

Models of set theory where not every set can be linearly ordered

"Seemed to had" is it correct?

Single word antonym of "flightless"

If 'B is more likely given A', then 'A is more likely given B'

Did Xerox really develop the first LAN?

Center align columns in table ignoring minus signs?

The logistics of corpse disposal

What's the purpose of writing one's academic bio in 3rd person?

Can Pao de Queijo, and similar foods, be kosher for Passover?

What is the correct way to use the pinch test for dehydration?

What are the motives behind Cersei's orders given to Bronn?

Should I discuss the type of campaign with my players?

How to recreate this effect in Photoshop?

G-Code for resetting to 100% speed

When is phishing education going too far?

Is there a Spanish version of "dot your i's and cross your t's" that includes the letter 'ñ'?

Bonus calculation: Am I making a mountain out of a molehill?

How to find all the available tools in macOS terminal?

Is there a concise way to say "all of the X, one of each"?

Dominant seventh chord in the major scale contains diminished triad of the seventh?

How much radiation do nuclear physics experiments expose researchers to nowadays?

I am not a queen, who am I?

Right-skewed distribution with mean equals to mode?

Do you forfeit tax refunds/credits if you aren't required to and don't file by April 15?



HISTTIMEFORMAT plain doesn't work



Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)
2019 Community Moderator Election Results
Why I closed the “Why is Kali so hard” questionsource .bashrc command doesn't workWhy doesn't this regex work?Changing HISTTIMEFORMAT leaves entries with incorrect dateHISTTIMEFORMAT syntaxrun startup.sh doesn't workbase10 doesn't work+ with sed doesn't workStderr redirection doesn't workWhy doesn't source lib/* work?HISTTIMEFORMAT and deleting matching history entries



.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








2















Setting HISTTIMEFORMAT in bash to get timestamps in the history report just isn't working:



> fgrep HISTTIMEFORMAT ~/.bashrc
export HISTTIMEFORMAT='%m-%d-%y %T '
> bash
> history | tail -20
181 git status
182 man git-push
183 history | tail
184 help history
185 export HISTTIMEFORMAT="%d.%m.%y %T "
186 history | tail
187 export HISTTIMEFORMAT="%m-%d-%y %T"
188 history | tail
189 HISTTIMEFORMAT="%m-%d-%y %T"
190 history | tail
191 echo $HISTTIMEFORMAT
192 man 3 strftime
193 set | fgrep HIST
194 HISTTIMEFORMAT='%m-%d-%y %T '
195 history | tail
196 export HISTTIMEFORMAT='%m-%d-%y %T '
197 history | tail
198 bash
199 export HISTTIMEFORMAT
200 history |tail -2
> set | fgrep HIST
HISTCONTROL=ignoredups
HISTFILE=/home/eewanco/.bash_history
HISTFILESIZE=200
HISTSIZE=200
HISTTIMEFORMAT='%m-%d-%y %T '
> set | fgrep BASH
BASH=/bin/bash
BASHOPTS=cmdhist:expand_aliases:extquote:force_fignore:hostcomplete:interactive_comments:progcomp:promptvars:sourcepath
BASH_ALIASES=()
BASH_ARGC=()
BASH_ARGV=()
BASH_CMDS=()
BASH_LINENO=()
BASH_SOURCE=()
BASH_VERSINFO=([0]="4" [1]="1" [2]="2" [3]="1" [4]="release" [5]="x86_64-redhat-linux-gnu")
BASH_VERSION='4.1.2(1)-release'


I vaguely recall having similar trouble and successfully getting this to work at a previous company with a special trick but I can't remember what it was. The history file is logging timestamps correctly, in fact I was able to get the information I wanted with a date -d @ command, but I want this solved for future usage. I've seen logs of people doing precisely what I did and it works for them. It works fine on my Samsung tablet.










share|improve this question
























  • surely you don't have history aliased to something else, like fc -l? what does alias history say?

    – mosvy
    11 hours ago












  • or better, type history?

    – mosvy
    11 hours ago

















2















Setting HISTTIMEFORMAT in bash to get timestamps in the history report just isn't working:



> fgrep HISTTIMEFORMAT ~/.bashrc
export HISTTIMEFORMAT='%m-%d-%y %T '
> bash
> history | tail -20
181 git status
182 man git-push
183 history | tail
184 help history
185 export HISTTIMEFORMAT="%d.%m.%y %T "
186 history | tail
187 export HISTTIMEFORMAT="%m-%d-%y %T"
188 history | tail
189 HISTTIMEFORMAT="%m-%d-%y %T"
190 history | tail
191 echo $HISTTIMEFORMAT
192 man 3 strftime
193 set | fgrep HIST
194 HISTTIMEFORMAT='%m-%d-%y %T '
195 history | tail
196 export HISTTIMEFORMAT='%m-%d-%y %T '
197 history | tail
198 bash
199 export HISTTIMEFORMAT
200 history |tail -2
> set | fgrep HIST
HISTCONTROL=ignoredups
HISTFILE=/home/eewanco/.bash_history
HISTFILESIZE=200
HISTSIZE=200
HISTTIMEFORMAT='%m-%d-%y %T '
> set | fgrep BASH
BASH=/bin/bash
BASHOPTS=cmdhist:expand_aliases:extquote:force_fignore:hostcomplete:interactive_comments:progcomp:promptvars:sourcepath
BASH_ALIASES=()
BASH_ARGC=()
BASH_ARGV=()
BASH_CMDS=()
BASH_LINENO=()
BASH_SOURCE=()
BASH_VERSINFO=([0]="4" [1]="1" [2]="2" [3]="1" [4]="release" [5]="x86_64-redhat-linux-gnu")
BASH_VERSION='4.1.2(1)-release'


I vaguely recall having similar trouble and successfully getting this to work at a previous company with a special trick but I can't remember what it was. The history file is logging timestamps correctly, in fact I was able to get the information I wanted with a date -d @ command, but I want this solved for future usage. I've seen logs of people doing precisely what I did and it works for them. It works fine on my Samsung tablet.










share|improve this question
























  • surely you don't have history aliased to something else, like fc -l? what does alias history say?

    – mosvy
    11 hours ago












  • or better, type history?

    – mosvy
    11 hours ago













2












2








2


1






Setting HISTTIMEFORMAT in bash to get timestamps in the history report just isn't working:



> fgrep HISTTIMEFORMAT ~/.bashrc
export HISTTIMEFORMAT='%m-%d-%y %T '
> bash
> history | tail -20
181 git status
182 man git-push
183 history | tail
184 help history
185 export HISTTIMEFORMAT="%d.%m.%y %T "
186 history | tail
187 export HISTTIMEFORMAT="%m-%d-%y %T"
188 history | tail
189 HISTTIMEFORMAT="%m-%d-%y %T"
190 history | tail
191 echo $HISTTIMEFORMAT
192 man 3 strftime
193 set | fgrep HIST
194 HISTTIMEFORMAT='%m-%d-%y %T '
195 history | tail
196 export HISTTIMEFORMAT='%m-%d-%y %T '
197 history | tail
198 bash
199 export HISTTIMEFORMAT
200 history |tail -2
> set | fgrep HIST
HISTCONTROL=ignoredups
HISTFILE=/home/eewanco/.bash_history
HISTFILESIZE=200
HISTSIZE=200
HISTTIMEFORMAT='%m-%d-%y %T '
> set | fgrep BASH
BASH=/bin/bash
BASHOPTS=cmdhist:expand_aliases:extquote:force_fignore:hostcomplete:interactive_comments:progcomp:promptvars:sourcepath
BASH_ALIASES=()
BASH_ARGC=()
BASH_ARGV=()
BASH_CMDS=()
BASH_LINENO=()
BASH_SOURCE=()
BASH_VERSINFO=([0]="4" [1]="1" [2]="2" [3]="1" [4]="release" [5]="x86_64-redhat-linux-gnu")
BASH_VERSION='4.1.2(1)-release'


I vaguely recall having similar trouble and successfully getting this to work at a previous company with a special trick but I can't remember what it was. The history file is logging timestamps correctly, in fact I was able to get the information I wanted with a date -d @ command, but I want this solved for future usage. I've seen logs of people doing precisely what I did and it works for them. It works fine on my Samsung tablet.










share|improve this question
















Setting HISTTIMEFORMAT in bash to get timestamps in the history report just isn't working:



> fgrep HISTTIMEFORMAT ~/.bashrc
export HISTTIMEFORMAT='%m-%d-%y %T '
> bash
> history | tail -20
181 git status
182 man git-push
183 history | tail
184 help history
185 export HISTTIMEFORMAT="%d.%m.%y %T "
186 history | tail
187 export HISTTIMEFORMAT="%m-%d-%y %T"
188 history | tail
189 HISTTIMEFORMAT="%m-%d-%y %T"
190 history | tail
191 echo $HISTTIMEFORMAT
192 man 3 strftime
193 set | fgrep HIST
194 HISTTIMEFORMAT='%m-%d-%y %T '
195 history | tail
196 export HISTTIMEFORMAT='%m-%d-%y %T '
197 history | tail
198 bash
199 export HISTTIMEFORMAT
200 history |tail -2
> set | fgrep HIST
HISTCONTROL=ignoredups
HISTFILE=/home/eewanco/.bash_history
HISTFILESIZE=200
HISTSIZE=200
HISTTIMEFORMAT='%m-%d-%y %T '
> set | fgrep BASH
BASH=/bin/bash
BASHOPTS=cmdhist:expand_aliases:extquote:force_fignore:hostcomplete:interactive_comments:progcomp:promptvars:sourcepath
BASH_ALIASES=()
BASH_ARGC=()
BASH_ARGV=()
BASH_CMDS=()
BASH_LINENO=()
BASH_SOURCE=()
BASH_VERSINFO=([0]="4" [1]="1" [2]="2" [3]="1" [4]="release" [5]="x86_64-redhat-linux-gnu")
BASH_VERSION='4.1.2(1)-release'


I vaguely recall having similar trouble and successfully getting this to work at a previous company with a special trick but I can't remember what it was. The history file is logging timestamps correctly, in fact I was able to get the information I wanted with a date -d @ command, but I want this solved for future usage. I've seen logs of people doing precisely what I did and it works for them. It works fine on my Samsung tablet.







bash






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited 10 hours ago









Rui F Ribeiro

42.1k1483142




42.1k1483142










asked 11 hours ago









eewancoeewanco

320212




320212












  • surely you don't have history aliased to something else, like fc -l? what does alias history say?

    – mosvy
    11 hours ago












  • or better, type history?

    – mosvy
    11 hours ago

















  • surely you don't have history aliased to something else, like fc -l? what does alias history say?

    – mosvy
    11 hours ago












  • or better, type history?

    – mosvy
    11 hours ago
















surely you don't have history aliased to something else, like fc -l? what does alias history say?

– mosvy
11 hours ago






surely you don't have history aliased to something else, like fc -l? what does alias history say?

– mosvy
11 hours ago














or better, type history?

– mosvy
11 hours ago





or better, type history?

– mosvy
11 hours ago










0






active

oldest

votes












Your Answer








StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "106"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f512623%2fhisttimeformat-plain-doesnt-work%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes















draft saved

draft discarded
















































Thanks for contributing an answer to Unix & Linux Stack Exchange!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f512623%2fhisttimeformat-plain-doesnt-work%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







-bash

Popular posts from this blog

Frič See also Navigation menuinternal link

Identify plant with long narrow paired leaves and reddish stems Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?What is this plant with long sharp leaves? Is it a weed?What is this 3ft high, stalky plant, with mid sized narrow leaves?What is this young shrub with opposite ovate, crenate leaves and reddish stems?What is this plant with large broad serrated leaves?Identify this upright branching weed with long leaves and reddish stemsPlease help me identify this bulbous plant with long, broad leaves and white flowersWhat is this small annual with narrow gray/green leaves and rust colored daisy-type flowers?What is this chilli plant?Does anyone know what type of chilli plant this is?Help identify this plant

fontconfig warning: “/etc/fonts/fonts.conf”, line 100: unknown “element blank” The 2019 Stack Overflow Developer Survey Results Are In“tar: unrecognized option --warning” during 'apt-get install'How to fix Fontconfig errorHow do I figure out which font file is chosen for a system generic font alias?Why are some apt-get-installed fonts being ignored by fc-list, xfontsel, etc?Reload settings in /etc/fonts/conf.dTaking 30 seconds longer to boot after upgrade from jessie to stretchHow to match multiple font names with a single <match> element?Adding a custom font to fontconfigRemoving fonts from fontconfig <match> resultsBroken fonts after upgrading Firefox ESR to latest Firefox