forked from cheat/cheatsheets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
date
52 lines (37 loc) · 941 Bytes
/
date
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
---
tags: [ date, time ]
---
# To print Abbreviated weekday name:
date +"%a"
# To print Full month name:
date +"%B"
# To print ISO date (same as %Y-%m-%d):
date +"%F"
# To print Time (same as %H:%M:%S):
date +"%T"
# To print Sunday week number (00 to 53):
date +"%U"
# To print Monday week number (00 to 53):
date +"%W"
# To print Time (localized):
date +"%X"
# To print 4-digit year:
date +"%Y"
# To print Timezone name:
date +"%Z"
# To print the date in a format suitable for affixing to file names:
date +"%Y%m%d_%H%M%S"
# To convert a Unix timestamp to Date (Linux):
date -d @1440359821
# To convert a Unix timestamp to Date (OSX):
date -r 1440359821
# To show the current timezone:
date +%Z
# To show date in RFC format with TZ offset:
date -R
# To show date in UTC/GMT:
date -u
# To show date in CET:
TZ=CET date
# To show the time on the west coast of the US (use tzselect(1) to find TZ):
TZ='America/Los_Angeles' date