#!/bin/sh -e
# Add file to mpd queue
for arg
do  fullpath=$(realpath "$arg")
    mpc insert "${fullpath/$MUSIC\//}"
done