source: liacs/ai/poker/convert-txt-to-dat.sh@ 2

Last change on this file since 2 was 2, checked in by Rick van der Zwet, 15 years ago

Initial import of data of old repository ('data') worth keeping (e.g. tracking
means of URL access statistics)

  • Property svn:executable set to *
File size: 124 bytes
Line 
1#!/bin/sh
2for file in `ls *.txt | grep test`; do
3awk '/Learned/ {print $2 " " $7}' $file > `basename $file .txt`.dat;
4done
5
Note: See TracBrowser for help on using the repository browser.