echo FOLDER_PATH is $FOLDER_PATH
if [ $# -eq 0 ] ; then
	read	## so we don't exit immediately...
fi
cd $FOLDER_PATH
for x; do {
  echo  you dragged  \"$(basename "$x")\" listed as:
  ls -l "$x"
  if listattr "$x"|grep -q BEOS:TYPE ; then
	echo -e "It is of type:\n   " `catattr BEOS:TYPE "$x"|cut --delimiter : --fields 3`
	echo ...and has attributes:
  else
	echo it has no type attribute set
	echo it has the following other attributes
  fi
  listattr "$x"|tail +2
  echo -e "=====================\nType a return to continue...\n"
  read
} ;done
