1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-01-26 03:51:32 +00:00
Files
Interlisp.maiko/bin/mkvdate
Nick Briggs 26fe840edf Convert "mkvdate" into a shell script instead of compiled C code (#411)
For all	systems other than DOS, use a simple shell script to create
the vdate.c (contains version date) that goes into every build.
2021-12-09 12:36:12 -08:00

6 lines
70 B
Bash
Executable File

#!/bin/sh
cat <<EOF
#include <time.h>
time_t MDate = $(date +%s);
EOF