get three-letter day name from date command
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
add a comment |
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
add a comment |
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
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
command-line date
edited yesterday
theonlygusti
asked yesterday


theonlygustitheonlygusti
25917
25917
add a comment |
add a comment |
                                1 Answer
                            1
                        
active
oldest
votes
From man date:
%a     locale's abbreviated weekday name (e.g., Sun)
 
 
 
 
 
 
 oh that's not in my- man datebut it works. When I search- abbrin my man page it just shows- yyand- cc
 – theonlygusti
 yesterday
 
 
 
 
 
 
 
 2
 
 
 
 
 FWIW you might see the full list detailed in the man page for- strftime, the system call which- datemakes use of.
 – steve
 yesterday
 
 
 
 
 
 1
 
 
 
 
 @steve oh cool, thank you. Indeed- %a is replaced by national representation of the abbreviated weekday name.is in my- man strftime
 – theonlygusti
 yesterday
 
 
 
 
 
 1
 
 
 
 
 To be pedantic, strftime is a library call (in section 3 of the manual) not a system call.
 – icarus
 yesterday
 
 
 
add a comment |
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%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
From man date:
%a     locale's abbreviated weekday name (e.g., Sun)
 
 
 
 
 
 
 oh that's not in my- man datebut it works. When I search- abbrin my man page it just shows- yyand- cc
 – theonlygusti
 yesterday
 
 
 
 
 
 
 
 2
 
 
 
 
 FWIW you might see the full list detailed in the man page for- strftime, the system call which- datemakes use of.
 – steve
 yesterday
 
 
 
 
 
 1
 
 
 
 
 @steve oh cool, thank you. Indeed- %a is replaced by national representation of the abbreviated weekday name.is in my- man strftime
 – theonlygusti
 yesterday
 
 
 
 
 
 1
 
 
 
 
 To be pedantic, strftime is a library call (in section 3 of the manual) not a system call.
 – icarus
 yesterday
 
 
 
add a comment |
From man date:
%a     locale's abbreviated weekday name (e.g., Sun)
 
 
 
 
 
 
 oh that's not in my- man datebut it works. When I search- abbrin my man page it just shows- yyand- cc
 – theonlygusti
 yesterday
 
 
 
 
 
 
 
 2
 
 
 
 
 FWIW you might see the full list detailed in the man page for- strftime, the system call which- datemakes use of.
 – steve
 yesterday
 
 
 
 
 
 1
 
 
 
 
 @steve oh cool, thank you. Indeed- %a is replaced by national representation of the abbreviated weekday name.is in my- man strftime
 – theonlygusti
 yesterday
 
 
 
 
 
 1
 
 
 
 
 To be pedantic, strftime is a library call (in section 3 of the manual) not a system call.
 – icarus
 yesterday
 
 
 
add a comment |
From man date:
%a     locale's abbreviated weekday name (e.g., Sun)
From man date:
%a     locale's abbreviated weekday name (e.g., Sun)
edited yesterday


filbranden
7,2552836
7,2552836
answered yesterday
steeldriversteeldriver
34.8k35184
34.8k35184
 
 
 
 
 
 
 oh that's not in my- man datebut it works. When I search- abbrin my man page it just shows- yyand- cc
 – theonlygusti
 yesterday
 
 
 
 
 
 
 
 2
 
 
 
 
 FWIW you might see the full list detailed in the man page for- strftime, the system call which- datemakes use of.
 – steve
 yesterday
 
 
 
 
 
 1
 
 
 
 
 @steve oh cool, thank you. Indeed- %a is replaced by national representation of the abbreviated weekday name.is in my- man strftime
 – theonlygusti
 yesterday
 
 
 
 
 
 1
 
 
 
 
 To be pedantic, strftime is a library call (in section 3 of the manual) not a system call.
 – icarus
 yesterday
 
 
 
add a comment |
 
 
 
 
 
 
 oh that's not in my- man datebut it works. When I search- abbrin my man page it just shows- yyand- cc
 – theonlygusti
 yesterday
 
 
 
 
 
 
 
 2
 
 
 
 
 FWIW you might see the full list detailed in the man page for- strftime, the system call which- datemakes use of.
 – steve
 yesterday
 
 
 
 
 
 1
 
 
 
 
 @steve oh cool, thank you. Indeed- %a is replaced by national representation of the abbreviated weekday name.is in my- man strftime
 – theonlygusti
 yesterday
 
 
 
 
 
 1
 
 
 
 
 To be pedantic, strftime is a library call (in section 3 of the manual) not a system call.
 – icarus
 yesterday
 
 
 
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
yesterday
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
yesterday
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
yesterday
FWIW you might see the full list detailed in the man page for
strftime, the system call which date makes use of.– steve
yesterday
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
yesterday
@steve oh cool, thank you. Indeed
%a    is replaced by national representation of the abbreviated weekday name. is in my man strftime– theonlygusti
yesterday
1
1
To be pedantic, strftime is a library call (in section 3 of the manual) not a system call.
– icarus
yesterday
To be pedantic, strftime is a library call (in section 3 of the manual) not a system call.
– icarus
yesterday
add a comment |
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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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%2f492841%2fget-three-letter-day-name-from-date-command%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