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

Mobil Contents History Mobil brands Former Mobil brands Lukoil transaction Mobil UK Mobil Australia Mobil New Zealand Mobil Greece Mobil in Japan Mobil in Canada Mobil Egypt See also References External links Navigation menuwww.mobil.com"Mobil Corporation"the original"Our Houston campus""Business & Finance: Socony-Vacuum Corp.""Popular Mechanics""Lubrite Technologies""Exxon Mobil campus 'clearly happening'""Toledo Blade - Google News Archive Search""The Lion and the Moose - How 2 Executives Pulled off the Biggest Merger Ever""ExxonMobil Press Release""Lubricants""Archived copy"the original"Mobil 1™ and Mobil Super™ motor oil and synthetic motor oil - Mobil™ Motor Oils""Mobil Delvac""Mobil Industrial website""The State of Competition in Gasoline Marketing: The Effects of Refiner Operations at Retail""Mobil Travel Guide to become Forbes Travel Guide""Hotel Rankings: Forbes Merges with Mobil"the original"Jamieson oil industry history""Mobil news""Caltex pumps for control""Watchdog blocks Caltex bid""Exxon Mobil sells service station network""Mobil Oil New Zealand Limited is New Zealand's oldest oil company, with predecessor companies having first established a presence in the country in 1896""ExxonMobil subsidiaries have a business history in New Zealand stretching back more than 120 years. We are involved in petroleum refining and distribution and the marketing of fuels, lubricants and chemical products""Archived copy"the original"Exxon Mobil to Sell Its Japanese Arm for $3.9 Billion""Gas station merger will end Esso and Mobil's long run in Japan""Esso moves to affiliate itself with PC Optimum, no longer Aeroplan, in loyalty point switch""Mobil brand of gas stations to launch in Canada after deal for 213 Loblaws-owned locations""Mobil Nears Completion of Rebranding 200 Loblaw Gas Stations""Learn about ExxonMobil's operations in Egypt""Petrol and Diesel Service Stations in Egypt - Mobil"Official websiteExxon Mobil corporate websiteMobil Industrial official websiteeeeeeeeDA04275022275790-40000 0001 0860 5061n82045453134887257134887257

My Life (Mary J. Blige album) Contents Background Critical reception Accolades Commercial performance Track listing Personnel Charts Certifications See also References External links Navigation menu"1. Mary J Blige, My Life - The 50 Best R&B albums of the '90s""American album certifications – Mary J. Blige – My Life""Mary J. Blige's My Life LP (1994) revisited with co-producer Chucky Thompson | Return To The Classics"the original"Key Tracks: Mary J. Blige's My Life""My Life – Mary J. Blige""Worth The Wait""My Life""Forget '411,' Mary J., Better Call 911""Spins"My Life AccoladesThe 500 Greatest Albums of All TimeTime's All-TIME 100 Albums"Top RPM Albums: Issue chartid""Dutchcharts.nl – Mary J. Blige – My Life""Mary J. Blige | Artist | Official Charts""Mary J. Blige Chart History (Billboard 200)""Mary J. Blige Chart History (Top R&B/Hip-Hop Albums)""Canadian album certifications – Mary J Blige – My Life""British album certifications – Mary J Blige – My Life""American album certifications – Mary J Blige – My Life"My LifeMy Life accoladesee

Frič See also Navigation menuinternal link