How to find 'Day of week' in Linux system

Hi All,

I want to find a day of week for the Linux system.

can some one help me on this..

Thanks in advance,
Raji.

Try

date '+%u'
or
date '+%a'
or
date '+%A'
man date

Thank you :wink: