#!/bin/sh
if [ "$ANSI" = "Y" ]; then
  echo "[1;32;40mContents of `pwd`.[0;37;40m"
 else
  echo "Contents of `pwd`."
fi
echo
ls $* --8bit --color=tty -F -b -T 0
echo
if [ "$ANSI" = "Y" ]; then
  echo "[1;32;40mPress <ENTER> to continue[0;37;40m"
 else
  echo "Press <ENTER> to continue"
fi
read word
