#!/bin/sh
#
# clean: remote control characters from script files
# 

case $# in
0) tr -d '\015\010' < "$@" ;;
*) tr -d '\015\010' ;;
esac
#
# $Source: /mit/consult/inbsdbin/RCS/clean,v $
# $Author: jhawk $

