diff options
author | MadCamel <madcamel@gmail.com> | 2010-05-05 07:34:05 -0400 |
---|---|---|
committer | MadCamel <madcamel@gmail.com> | 2010-05-05 07:34:05 -0400 |
commit | 51e87379c9d532cafc98b96178709b8b8c88e1ae (patch) | |
tree | db80f2e1a758b2739ab79218a88a3def501f362d /src/tool/marriage-info.sh | |
parent | ae73f3122063048b3a5a2d1c48f6c13b02fd4e1f (diff) | |
download | tmwa-51e87379c9d532cafc98b96178709b8b8c88e1ae.tar.gz tmwa-51e87379c9d532cafc98b96178709b8b8c88e1ae.tar.bz2 tmwa-51e87379c9d532cafc98b96178709b8b8c88e1ae.tar.xz tmwa-51e87379c9d532cafc98b96178709b8b8c88e1ae.zip |
Fixed up and slightly simplified the build system
It's now possible to run 'make' in any of the src/ subdirs and
have it build properly. Moved some tools including eathena-monitor
to src/tools - run 'make tools' to build. CFLAGS, etc are now in
the 'make.defs' file. Requires GNU make.
Diffstat (limited to 'src/tool/marriage-info.sh')
-rwxr-xr-x | src/tool/marriage-info.sh | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/tool/marriage-info.sh b/src/tool/marriage-info.sh new file mode 100755 index 0000000..2389d7f --- /dev/null +++ b/src/tool/marriage-info.sh @@ -0,0 +1,20 @@ +#! /bin/sh + +cd ~/tmwserver + +cat save/athena.txt | sort -n > athena-sorted.txt + +printf "Top married couples\n===================\n" > ~/public_html/stats/married.txt +cat athena-sorted.txt | ./marriage-info -c | sort -rn | awk '{printf "%d %s oo %s (%s (%s, %d), %s(%s, %d))\n", ++rank, $3, $6, $3, $4, $5, $6, $7, $8}' | tr '%' ' ' >> ~/public_html/stats/married.txt + +printf "Top female singles\n==================\n" > ~/public_html/stats/female-singles.txt +cat athena-sorted.txt | ./marriage-info -f | sort -rn | awk '{printf "%d %s(%d)\n", ++rank, $3, $1}' | tr '%' ' ' | head -50 >> ~/public_html/stats/female-singles.txt + +printf "Top male singles\n===============\n" > ~/public_html/stats/male-singles.txt +cat athena-sorted.txt | ./marriage-info -m | sort -rn | awk '{printf "%d %s(%d)\n", ++rank, $3, $1}' | tr '%' ' ' | head -50 >> ~/public_html/stats/male-singles.txt + +printf "Top singles\n===============\n" > ~/public_html/stats/singles.txt +cat athena-sorted.txt | ./marriage-info -s | sort -rn | awk '{printf "%d %s(%s, %d)\n", ++rank, $3, $4, $1}' | tr '%' ' ' | head -50 >> ~/public_html/stats/singles.txt + +rm athena-sorted.txt + |