Files
gf-core/src/tools/mktoday.sh
2005-04-28 15:42:47 +00:00

8 lines
197 B
Bash

#!/bin/sh
echo 'module GF.Today (today,version) where' > GF/Today.hs
echo 'today,version :: String' >> GF/Today.hs
echo 'today = "'`date`'"' >> GF/Today.hs
echo 'version = "'$1'"' >> GF/Today.hs