blob: 8f13f61d9ea6ee101d06d26220fdd1c018462698 (
plain)
1
2
3
4
5
6
7
|
#!/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
|