Bash prompt display HH:MM:SS
I learned from the question date - HH:MM:SS (with AM/PM) 12 Hour Timestamp for Bash Prompt - Unix & Linux Stack Exchange and fine-tune my prompt as:
export PS1='D{%r}:[e]0;u@h: wa]${debian_chroot:+($debian_chroot)}[33[01;32m]u@h[33[00m]:[33[01;34m]w[33[00m]:n$ '
08:52:31 PM:me@host:~:
$
The time format is not very comfortable, the result I desire is
08:52PM me@host~:
How could I get such a HH:MM(AM/PM) format
The final result
export PS1='D{%I:%M%p %d/%m %A}:[e]0;u@h: wa]${debian_chroot:+($debian_chroot)}[33[01;32m]u@h[33[00m]:[33[01;34m]w[33[00m]:n$ '
10:45PM 18/03 Monday:me@host:~:
$ ls
'$tty'
ps1
add a comment |
I learned from the question date - HH:MM:SS (with AM/PM) 12 Hour Timestamp for Bash Prompt - Unix & Linux Stack Exchange and fine-tune my prompt as:
export PS1='D{%r}:[e]0;u@h: wa]${debian_chroot:+($debian_chroot)}[33[01;32m]u@h[33[00m]:[33[01;34m]w[33[00m]:n$ '
08:52:31 PM:me@host:~:
$
The time format is not very comfortable, the result I desire is
08:52PM me@host~:
How could I get such a HH:MM(AM/PM) format
The final result
export PS1='D{%I:%M%p %d/%m %A}:[e]0;u@h: wa]${debian_chroot:+($debian_chroot)}[33[01;32m]u@h[33[00m]:[33[01;34m]w[33[00m]:n$ '
10:45PM 18/03 Monday:me@host:~:
$ ls
'$tty'
ps1
1
Why is the format in your question title different from what you actually want in the question?
– Barmar
Mar 18 at 15:48
1
@Alice You should not post answers in the question body. If you want to share what is the final solution that you used you can post your own answer. It's okay to answer your own question, if your answer adds something to the answers already present.
– Bakuriu
Mar 18 at 19:33
add a comment |
I learned from the question date - HH:MM:SS (with AM/PM) 12 Hour Timestamp for Bash Prompt - Unix & Linux Stack Exchange and fine-tune my prompt as:
export PS1='D{%r}:[e]0;u@h: wa]${debian_chroot:+($debian_chroot)}[33[01;32m]u@h[33[00m]:[33[01;34m]w[33[00m]:n$ '
08:52:31 PM:me@host:~:
$
The time format is not very comfortable, the result I desire is
08:52PM me@host~:
How could I get such a HH:MM(AM/PM) format
The final result
export PS1='D{%I:%M%p %d/%m %A}:[e]0;u@h: wa]${debian_chroot:+($debian_chroot)}[33[01;32m]u@h[33[00m]:[33[01;34m]w[33[00m]:n$ '
10:45PM 18/03 Monday:me@host:~:
$ ls
'$tty'
ps1
I learned from the question date - HH:MM:SS (with AM/PM) 12 Hour Timestamp for Bash Prompt - Unix & Linux Stack Exchange and fine-tune my prompt as:
export PS1='D{%r}:[e]0;u@h: wa]${debian_chroot:+($debian_chroot)}[33[01;32m]u@h[33[00m]:[33[01;34m]w[33[00m]:n$ '
08:52:31 PM:me@host:~:
$
The time format is not very comfortable, the result I desire is
08:52PM me@host~:
How could I get such a HH:MM(AM/PM) format
The final result
export PS1='D{%I:%M%p %d/%m %A}:[e]0;u@h: wa]${debian_chroot:+($debian_chroot)}[33[01;32m]u@h[33[00m]:[33[01;34m]w[33[00m]:n$ '
10:45PM 18/03 Monday:me@host:~:
$ ls
'$tty'
ps1
ps1
edited Mar 18 at 14:47
Alice
asked Mar 18 at 12:59
AliceAlice
557111
557111
1
Why is the format in your question title different from what you actually want in the question?
– Barmar
Mar 18 at 15:48
1
@Alice You should not post answers in the question body. If you want to share what is the final solution that you used you can post your own answer. It's okay to answer your own question, if your answer adds something to the answers already present.
– Bakuriu
Mar 18 at 19:33
add a comment |
1
Why is the format in your question title different from what you actually want in the question?
– Barmar
Mar 18 at 15:48
1
@Alice You should not post answers in the question body. If you want to share what is the final solution that you used you can post your own answer. It's okay to answer your own question, if your answer adds something to the answers already present.
– Bakuriu
Mar 18 at 19:33
1
1
Why is the format in your question title different from what you actually want in the question?
– Barmar
Mar 18 at 15:48
Why is the format in your question title different from what you actually want in the question?
– Barmar
Mar 18 at 15:48
1
1
@Alice You should not post answers in the question body. If you want to share what is the final solution that you used you can post your own answer. It's okay to answer your own question, if your answer adds something to the answers already present.
– Bakuriu
Mar 18 at 19:33
@Alice You should not post answers in the question body. If you want to share what is the final solution that you used you can post your own answer. It's okay to answer your own question, if your answer adds something to the answers already present.
– Bakuriu
Mar 18 at 19:33
add a comment |
2 Answers
2
active
oldest
votes
The supported formats are those documented in man date
. So instead of
%r locale's 12-hour clock time (e.g., 11:11:04 PM)
you can use
%I hour (01..12)
%M minute (00..59)
%p locale's equivalent of either AM or PM; blank if not known
So change D{%r}
to D{%I:%M%p}
add a comment |
Use @
(the current time in 12-hour am/pm format) instead of D{%r}
, that produces times in HH:MM (AM|PM)
format.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
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: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
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%2faskubuntu.com%2fquestions%2f1126610%2fbash-prompt-display-hhmmss%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
The supported formats are those documented in man date
. So instead of
%r locale's 12-hour clock time (e.g., 11:11:04 PM)
you can use
%I hour (01..12)
%M minute (00..59)
%p locale's equivalent of either AM or PM; blank if not known
So change D{%r}
to D{%I:%M%p}
add a comment |
The supported formats are those documented in man date
. So instead of
%r locale's 12-hour clock time (e.g., 11:11:04 PM)
you can use
%I hour (01..12)
%M minute (00..59)
%p locale's equivalent of either AM or PM; blank if not known
So change D{%r}
to D{%I:%M%p}
add a comment |
The supported formats are those documented in man date
. So instead of
%r locale's 12-hour clock time (e.g., 11:11:04 PM)
you can use
%I hour (01..12)
%M minute (00..59)
%p locale's equivalent of either AM or PM; blank if not known
So change D{%r}
to D{%I:%M%p}
The supported formats are those documented in man date
. So instead of
%r locale's 12-hour clock time (e.g., 11:11:04 PM)
you can use
%I hour (01..12)
%M minute (00..59)
%p locale's equivalent of either AM or PM; blank if not known
So change D{%r}
to D{%I:%M%p}
answered Mar 18 at 13:08
steeldriversteeldriver
69.8k11114186
69.8k11114186
add a comment |
add a comment |
Use @
(the current time in 12-hour am/pm format) instead of D{%r}
, that produces times in HH:MM (AM|PM)
format.
add a comment |
Use @
(the current time in 12-hour am/pm format) instead of D{%r}
, that produces times in HH:MM (AM|PM)
format.
add a comment |
Use @
(the current time in 12-hour am/pm format) instead of D{%r}
, that produces times in HH:MM (AM|PM)
format.
Use @
(the current time in 12-hour am/pm format) instead of D{%r}
, that produces times in HH:MM (AM|PM)
format.
answered Mar 18 at 13:14
xenoidxenoid
1,9131416
1,9131416
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- 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%2faskubuntu.com%2fquestions%2f1126610%2fbash-prompt-display-hhmmss%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
1
Why is the format in your question title different from what you actually want in the question?
– Barmar
Mar 18 at 15:48
1
@Alice You should not post answers in the question body. If you want to share what is the final solution that you used you can post your own answer. It's okay to answer your own question, if your answer adds something to the answers already present.
– Bakuriu
Mar 18 at 19:33