summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBjoern B. Brandenburg <bbb@cs.unc.edu>2008-05-22 23:03:37 -0400
committerBjoern B. Brandenburg <bbb@cs.unc.edu>2008-05-22 23:03:37 -0400
commit2ab34e9a566417370fbeb4860d7c95397665344d (patch)
tree59b2076b1574185121f0ce09c0178fc42452226f
parent0d160666ce092caf6505884867c588a991e55c2d (diff)
get rid of the .ft.
-rwxr-xr-xsplit2
1 files changed, 1 insertions, 1 deletions
diff --git a/split b/split
index 215b1e7..dc865d5 100755
--- a/split
+++ b/split
@@ -8,7 +8,7 @@ function do_split() {
8 printf "\nsplitting $1\n" 8 printf "\nsplitting $1\n"
9 for E in $EVENTS; do 9 for E in $EVENTS; do
10 echo $E 10 echo $E
11 WHERE=`basename $1` 11 WHERE=`basename $1 | sed -e 's/.ft//'`
12 $SPLITTER $E $1 > "$WHERE.$E.csv" 12 $SPLITTER $E $1 > "$WHERE.$E.csv"
13 done 13 done
14} 14}