1#!/bin/sh 2 3fmt="%position% %artist - %title%" 4ps1="Song: " 5 6if song=$(mpc playlist -f "$fmt" | mymenu -A -p "$ps1" -d " "); then 7 mpc play $(echo $song | sed "s/ .*$//") 8fi