#!/bin/sh
#
# text
#
# Usage:   text
#
# This script will list TEXT files in current directory.
# The output can be used to remove/cat those files.
#
# By:  Angel Corbera, TSID1, Refinery Isla, Curacao
#
file * | awk '$0~/text/ || $0~/script/ || $0~/commands/ {print substr ($1,1,length($1)-1)}'
1