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;
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
add a comment |
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
surely you don't havehistory
aliased to something else, likefc -l
? what doesalias history
say?
– mosvy
11 hours ago
or better,type history
?
– mosvy
11 hours ago
add a comment |
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
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
bash
edited 10 hours ago
Rui F Ribeiro
42.1k1483142
42.1k1483142
asked 11 hours ago
eewancoeewanco
320212
320212
surely you don't havehistory
aliased to something else, likefc -l
? what doesalias history
say?
– mosvy
11 hours ago
or better,type history
?
– mosvy
11 hours ago
add a comment |
surely you don't havehistory
aliased to something else, likefc -l
? what doesalias 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
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
surely you don't have
history
aliased to something else, likefc -l
? what doesalias history
say?– mosvy
11 hours ago
or better,
type history
?– mosvy
11 hours ago