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