get three-letter day name from date command












9














date +%b


gives me the three-letter abbreviation of the current month name (I found that out online, it's not in my man date nor can I find the answer to this question in my man date).



How do I get the current day name? e.g. Sun, Mon, Tue, etc. ?










share|improve this question





























    9














    date +%b


    gives me the three-letter abbreviation of the current month name (I found that out online, it's not in my man date nor can I find the answer to this question in my man date).



    How do I get the current day name? e.g. Sun, Mon, Tue, etc. ?










    share|improve this question



























      9












      9








      9







      date +%b


      gives me the three-letter abbreviation of the current month name (I found that out online, it's not in my man date nor can I find the answer to this question in my man date).



      How do I get the current day name? e.g. Sun, Mon, Tue, etc. ?










      share|improve this question















      date +%b


      gives me the three-letter abbreviation of the current month name (I found that out online, it's not in my man date nor can I find the answer to this question in my man date).



      How do I get the current day name? e.g. Sun, Mon, Tue, etc. ?







      command-line date






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Jan 6 at 16:26







      theonlygusti

















      asked Jan 6 at 15:47









      theonlygustitheonlygusti

      25917




      25917






















          1 Answer
          1






          active

          oldest

          votes


















          14














          From man date:



          %a     locale's abbreviated weekday name (e.g., Sun)





          share|improve this answer























          • oh that's not in my man date but it works. When I search abbr in my man page it just shows yy and cc
            – theonlygusti
            Jan 6 at 15:49








          • 2




            FWIW you might see the full list detailed in the man page for strftime, the system call which date makes use of.
            – steve
            Jan 6 at 16:17






          • 1




            @steve oh cool, thank you. Indeed %a is replaced by national representation of the abbreviated weekday name. is in my man strftime
            – theonlygusti
            Jan 6 at 16:25






          • 1




            To be pedantic, strftime is a library call (in section 3 of the manual) not a system call.
            – icarus
            Jan 6 at 17:36











          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%2f492841%2fget-three-letter-day-name-from-date-command%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          14














          From man date:



          %a     locale's abbreviated weekday name (e.g., Sun)





          share|improve this answer























          • oh that's not in my man date but it works. When I search abbr in my man page it just shows yy and cc
            – theonlygusti
            Jan 6 at 15:49








          • 2




            FWIW you might see the full list detailed in the man page for strftime, the system call which date makes use of.
            – steve
            Jan 6 at 16:17






          • 1




            @steve oh cool, thank you. Indeed %a is replaced by national representation of the abbreviated weekday name. is in my man strftime
            – theonlygusti
            Jan 6 at 16:25






          • 1




            To be pedantic, strftime is a library call (in section 3 of the manual) not a system call.
            – icarus
            Jan 6 at 17:36
















          14














          From man date:



          %a     locale's abbreviated weekday name (e.g., Sun)





          share|improve this answer























          • oh that's not in my man date but it works. When I search abbr in my man page it just shows yy and cc
            – theonlygusti
            Jan 6 at 15:49








          • 2




            FWIW you might see the full list detailed in the man page for strftime, the system call which date makes use of.
            – steve
            Jan 6 at 16:17






          • 1




            @steve oh cool, thank you. Indeed %a is replaced by national representation of the abbreviated weekday name. is in my man strftime
            – theonlygusti
            Jan 6 at 16:25






          • 1




            To be pedantic, strftime is a library call (in section 3 of the manual) not a system call.
            – icarus
            Jan 6 at 17:36














          14












          14








          14






          From man date:



          %a     locale's abbreviated weekday name (e.g., Sun)





          share|improve this answer














          From man date:



          %a     locale's abbreviated weekday name (e.g., Sun)






          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Jan 6 at 16:41









          filbranden

          7,3502836




          7,3502836










          answered Jan 6 at 15:48









          steeldriversteeldriver

          34.9k35184




          34.9k35184












          • oh that's not in my man date but it works. When I search abbr in my man page it just shows yy and cc
            – theonlygusti
            Jan 6 at 15:49








          • 2




            FWIW you might see the full list detailed in the man page for strftime, the system call which date makes use of.
            – steve
            Jan 6 at 16:17






          • 1




            @steve oh cool, thank you. Indeed %a is replaced by national representation of the abbreviated weekday name. is in my man strftime
            – theonlygusti
            Jan 6 at 16:25






          • 1




            To be pedantic, strftime is a library call (in section 3 of the manual) not a system call.
            – icarus
            Jan 6 at 17:36


















          • oh that's not in my man date but it works. When I search abbr in my man page it just shows yy and cc
            – theonlygusti
            Jan 6 at 15:49








          • 2




            FWIW you might see the full list detailed in the man page for strftime, the system call which date makes use of.
            – steve
            Jan 6 at 16:17






          • 1




            @steve oh cool, thank you. Indeed %a is replaced by national representation of the abbreviated weekday name. is in my man strftime
            – theonlygusti
            Jan 6 at 16:25






          • 1




            To be pedantic, strftime is a library call (in section 3 of the manual) not a system call.
            – icarus
            Jan 6 at 17:36
















          oh that's not in my man date but it works. When I search abbr in my man page it just shows yy and cc
          – theonlygusti
          Jan 6 at 15:49






          oh that's not in my man date but it works. When I search abbr in my man page it just shows yy and cc
          – theonlygusti
          Jan 6 at 15:49






          2




          2




          FWIW you might see the full list detailed in the man page for strftime, the system call which date makes use of.
          – steve
          Jan 6 at 16:17




          FWIW you might see the full list detailed in the man page for strftime, the system call which date makes use of.
          – steve
          Jan 6 at 16:17




          1




          1




          @steve oh cool, thank you. Indeed %a is replaced by national representation of the abbreviated weekday name. is in my man strftime
          – theonlygusti
          Jan 6 at 16:25




          @steve oh cool, thank you. Indeed %a is replaced by national representation of the abbreviated weekday name. is in my man strftime
          – theonlygusti
          Jan 6 at 16:25




          1




          1




          To be pedantic, strftime is a library call (in section 3 of the manual) not a system call.
          – icarus
          Jan 6 at 17:36




          To be pedantic, strftime is a library call (in section 3 of the manual) not a system call.
          – icarus
          Jan 6 at 17:36


















          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%2f492841%2fget-three-letter-day-name-from-date-command%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

          Mario Kart Wii

          Partial Derivative Guidance.

          Understanding the size os this class of aleatory events