7 lines
140 B
Bash
Executable File
7 lines
140 B
Bash
Executable File
#!/bin/sh
|
|
|
|
date=`date`
|
|
echo "This page is automatically generated. Generated at ${date}\\n" > stats_page
|
|
|
|
./gen-stats.rb "$@" >> stats_page
|