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 Jan 6 at 16:26
theonlygusti
asked Jan 6 at 15:47
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 myman date
but it works. When I searchabbr
in my man page it just showsyy
andcc
– theonlygusti
Jan 6 at 15:49
2
FWIW you might see the full list detailed in the man page forstrftime
, the system call whichdate
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 myman 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
2 days ago
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 myman date
but it works. When I searchabbr
in my man page it just showsyy
andcc
– theonlygusti
Jan 6 at 15:49
2
FWIW you might see the full list detailed in the man page forstrftime
, the system call whichdate
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 myman 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
2 days ago
add a comment |
From man date
:
%a locale's abbreviated weekday name (e.g., Sun)
oh that's not in myman date
but it works. When I searchabbr
in my man page it just showsyy
andcc
– theonlygusti
Jan 6 at 15:49
2
FWIW you might see the full list detailed in the man page forstrftime
, the system call whichdate
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 myman 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
2 days ago
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 Jan 6 at 16:41
filbranden
7,2652836
7,2652836
answered Jan 6 at 15:48
steeldriversteeldriver
34.8k35184
34.8k35184
oh that's not in myman date
but it works. When I searchabbr
in my man page it just showsyy
andcc
– theonlygusti
Jan 6 at 15:49
2
FWIW you might see the full list detailed in the man page forstrftime
, the system call whichdate
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 myman 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
2 days ago
add a comment |
oh that's not in myman date
but it works. When I searchabbr
in my man page it just showsyy
andcc
– theonlygusti
Jan 6 at 15:49
2
FWIW you might see the full list detailed in the man page forstrftime
, the system call whichdate
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 myman 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
2 days ago
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
2 days ago
To be pedantic, strftime is a library call (in section 3 of the manual) not a system call.
– icarus
2 days ago
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