#!/bin/bash

#
#wrapper for Japanese code converter.
#Put it in $(PLUCKERDIR)/filter/
#

type=$1
name=$2
kcc="/usr/bin/kcc -s"
if [ $type = "text/plain" -o $type = "text/html" ]
then
    $kcc $name
fi


