#!/bin/csh -f

# Preprocesses and segments a TDC text using TextTiling.
# The output is printed at the standard output.
# Usage: tile TDC_file 

# Commands
set BLANKLINE = '/a/kaml4/usr2/staff/ychali/project/tools/blankline'
set TILE = '/a/kaml4/usr2/staff/ychali/TextTiling/tile'
set RM = rm

# Variables
set TMP = temp


# call blankline
$BLANKLINE $1 $TMP

# call tile
$TILE $TMP

#call rm
$RM $TMP






