#!/bin/bash

if [ $# -lt 4 ]; then
	echo "rchtext - calls chtext recursively"
	echo "All parameters are the same, but no need to specify files"
	echo
	chtext
	exit 1
fi

find . -type f -exec chtext $@ {} +
