#!/bin/bash
. bean_func.fnc

if [ $# -eq 0 ] ; then
  exit 1
elif [ $# -eq 1 ] ; then
  $1
  exit 1
fi

apppath=$1
shift 1

for i in "$@" ; do
  afile=`Bean_PathConv $i`
  $apppath "$afile" &
done
