Bash prompt display HH:MM:SSWhat does the name after '@' at terminal prompt mean?Displaying colors in the promptHow can I shorten my command line (bash) prompt?Long lines overlap in Bash PS1 customized promptPS1 set to display DesktopWhat is the best practice of customizing the Bash prompt (aka the PS1 environment variable)?How to personalize the command prompt?How to change the font size of just the prompt in bash?Logging in as root with sudo shows strange promptWhat does a hash sign (#) at the end of the directory path in a Bash prompt mean?

Homology of the fiber

Help with identifying unique aircraft over NE Pennsylvania

Print a physical multiplication table

Emojional cryptic crossword

Exit shell with shortcut (not typing exit) that closes session properly

Writing in a Christian voice

How do researchers send unsolicited emails asking for feedback on their works?

How are passwords stolen from companies if they only store hashes?

Why doesn't the fusion process of the sun speed up?

Single word to change groups

Is there any common country to visit for uk and schengen visa?

Should I be concerned about student access to a test bank?

How to remove space in section title at KOMA-Script

When should a starting writer get his own webpage?

Would it be believable to defy demographics in a story?

Should a narrator ever describe things based on a characters view instead of fact?

The English Debate

Unfrosted light bulb

Jem'Hadar, something strange about their life expectancy

Animating wave motion in water

is this saw blade faulty?

Can "few" be used as a subject? If so, what is the rule?

Extraneous elements in "Europe countries" list

Why doesn't the chatan sign the ketubah?



Bash prompt display HH:MM:SS


What does the name after '@' at terminal prompt mean?Displaying colors in the promptHow can I shorten my command line (bash) prompt?Long lines overlap in Bash PS1 customized promptPS1 set to display DesktopWhat is the best practice of customizing the Bash prompt (aka the PS1 environment variable)?How to personalize the command prompt?How to change the font size of just the prompt in bash?Logging in as root with sudo shows strange promptWhat does a hash sign (#) at the end of the directory path in a Bash prompt mean?













4















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'










share|improve this question



















  • 1





    Why is the format in your question title different from what you actually want in the question?

    – Barmar
    6 hours ago






  • 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
    2 hours ago















4















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'










share|improve this question



















  • 1





    Why is the format in your question title different from what you actually want in the question?

    – Barmar
    6 hours ago






  • 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
    2 hours ago













4












4








4








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'










share|improve this question
















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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited 7 hours ago







Alice

















asked 9 hours ago









AliceAlice

553111




553111







  • 1





    Why is the format in your question title different from what you actually want in the question?

    – Barmar
    6 hours ago






  • 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
    2 hours ago












  • 1





    Why is the format in your question title different from what you actually want in the question?

    – Barmar
    6 hours ago






  • 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
    2 hours ago







1




1





Why is the format in your question title different from what you actually want in the question?

– Barmar
6 hours ago





Why is the format in your question title different from what you actually want in the question?

– Barmar
6 hours ago




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
2 hours ago





@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
2 hours ago










2 Answers
2






active

oldest

votes


















5














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






share|improve this answer






























    4














    Use @ (the current time in 12-hour am/pm format) instead of D%r, that produces times in HH:MM (AM|PM) format.






    share|improve this answer






















      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
      );



      );













      draft saved

      draft discarded


















      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









      5














      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






      share|improve this answer



























        5














        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






        share|improve this answer

























          5












          5








          5







          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






          share|improve this answer













          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







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered 9 hours ago









          steeldriversteeldriver

          69.5k11114186




          69.5k11114186























              4














              Use @ (the current time in 12-hour am/pm format) instead of D%r, that produces times in HH:MM (AM|PM) format.






              share|improve this answer



























                4














                Use @ (the current time in 12-hour am/pm format) instead of D%r, that produces times in HH:MM (AM|PM) format.






                share|improve this answer

























                  4












                  4








                  4







                  Use @ (the current time in 12-hour am/pm format) instead of D%r, that produces times in HH:MM (AM|PM) format.






                  share|improve this answer













                  Use @ (the current time in 12-hour am/pm format) instead of D%r, that produces times in HH:MM (AM|PM) format.







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered 9 hours ago









                  xenoidxenoid

                  1,8731416




                  1,8731416



























                      draft saved

                      draft discarded
















































                      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.




                      draft saved


                      draft discarded














                      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





















































                      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







                      Popular posts from this blog

                      What is the best defense strategy for Survival in Grand Theft Auto Online?What is JP used for in Grand Theft Auto Online?How do I setup a Crew HQ in Grand Theft Auto Online?How does stealth work in Grand Theft Auto Online?Is it possible to own more than 10 cars in Grand Theft Auto online?Where to find truck/trailers in Grand Theft Auto OnlineWhat are some of the best missions to do on Grand Theft Auto 5 onlineFastest Car in Grand Theft Auto V PCHow to setup a Crew vs Crew online session in Grand Theft Auto Online?Grand theft auto 5 crossplayingRestart Grand Theft Auto V Online?

                      Благоевград Съдържание География | История | Население | Политика | Икономика и инфрастуктура | Здравеопазване | Образование и наука | Култура и забавления | Забележителности | Личности | Литература | Външни препратки | Бележки | Навигация42°01′18.99″ с. ш. 23°05′51″ и. д. / 42.021944° с. ш. 23.0975° и. д.*БлагоевградразширитередактиранеОфициален уебсайт на община БлагоевградНовинарски портал на Благоевград – blagoevgrad.euСайтове за БлагоевградНационален статистически институтdariknews.bgГригоровичъ, Викторъ. „Очеркъ путешествія по Европейской Турціи“. Москва, 1877.Стрезов, Георги. Два санджака от Източна Македония. Периодично списание на Българското книжовно дружество в Средец, кн. XXXVII и XXXVIII, 1891, стр. 18 – 19.Македония. Етнография и статистикаГаджанов, Димитър Г. Мюсюлманското население в Новоосвободените земи, в: Научна експедиция в Македония и Поморавието 1916, Военноиздателски комплекс „Св. Георги Победоносец“, Университетско издателство „Св. Климент Охридски“, София, 1993, стр. 244.паметник на незнайния четник&cd=18&hl=en&ct=clnk&client=firefox-a „История на днешен Благоевград“, взето от www.museumblg.com на 16 март 2010 г.„Справка за населението на град Благоевград, община Благоевград, област Благоевград, НСИ“„The population of all towns and villages in Blagoevgrad Province with 50 inhabitants or more according to census results and latest official estimates“„Ethnic composition, all places: 2011 census“История на Неврокопска епархия.Национален статистически институтМюсюлманско изповедание. Главно мюфтийствоНационален публичен регистър на храмовете в БългарияМюсюлманско изповедание. Главно мюфтийствоwww.dnes.bg Джамията в Благоевград не била паленаwww.sesc-bg.orgСписък на побратимени градовеТехническо побратимяванеГУМ грейва в цветовете на нощен Лас Вегас под името „Largo“, „МОЛ Благоевград“..., в. „Струма“grabo.bgwww.cinemaxbg.comррр4238731-067cad53a-0546-417b-a3d3-51e49b1d2232147736077147736077

                      Is it possible to log your Steam account into two computers at once? The Next CEO of Stack OverflowHow do I continue downloading a game in Steam while playing?Can I safely uninstall games purchased from Steam?Steam repeatedly pauses downloadsSteam game from Mac to PCCan I choose which library to install a game to using the remote-download feature?How to download Windows games from Steam onto a Linux computer?Steam Chat completely dropping messagesThe Steam App Won't Connect to WifiWhy is my Steam Client acting so slow?What else do I need to copy over/edit to make my game appear in the Steam Library?Downloading Steam games on different family laptops