Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 444 Bytes

figure-out-the-week-of-the-year-from-the-terminal.md

File metadata and controls

15 lines (10 loc) · 444 Bytes

Figure Out The Week Of The Year From The Terminal

Want to know what week of the year we are currently in? You can use the date utility to figure it out.

$ date +%V

The %V is a formatting directive with this description:

ISO week number, with Monday as first day of week (01..53)

source