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 53 54 55 56 57
|
sdate - never ending September date
-----------------------------------
```
$ sdate
Thu Sep 9718 09:13:41 CEST 1993
```
This program wraps the libc localtime() and gmtime() functions to output the
eternal September 1993 date. The epoch month is configurable (new in version
0.3).
sdate works like fakeroot (on which its code is based) by setting LD_PRELOAD to
a wrapper library.
http://www.catb.org/~esr/jargon/html/S/September-that-never-ended.html
[](https://travis-ci.org/df7cb/sdate)
# Other Epochs
Also supported is the never ending COVID 19 date:
```
$ sdate --covid 19
Thu Mar 96 20:01:20 CEST 2020
```
Other epochs can be selected using `-e` or `--epoch`:
```
$ sdate -e 1977-03
Do 15802. Mär 20:02:34 CEST 1977
```
# Programs compatible with sdate
Mutt: works. It will send out septemberfied Date: headers. Depends if you like
that.

xclock: works.

GNU date: works somewhat. date does not fully rely on strftime but does some of
the work on its own (for whatever reason) and chokes sometimes.
Please tell me your experiences with sdate so I can add the programs to this
list.
# Links
* https://www.df7cb.de/projects/sdate/
* https://github.com/df7cb/sdate
* https://travis-ci.org/github/df7cb/sdate
|