#!/bin/bash
. bean_func.fnc

if [ $# -eq 0 ] ; then
  Bean_OpenWithFM trash:///
  exit 0
else
  for i in "$@" ; do
    afile=`Bean_PathConv $i`
    gvfs-trash "$afile"
  done
  exit 0
fi
