Get three-letter day name from date command

command linedate

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. ?

Best Answer

From man date:

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