#!/bin/bash
from="$1"
dir=`dirname "$1"`
ls "$dir"/* |
while read A; do
	if [ "$A" = "$from" ]; then
		echo "$A"
		while read A; do
			echo "$A"
		done
		break
	fi
done | xargs -d'\n' mp
