#!/bin/sh

usage() {
	echo <<EOF
m4a2wav

Usage:
	m4a2wav

Converts all m4a files in the current directory to
wav format. Requires ffmpeg.
EOF
}

fd -e m4a -x ffmpeg -i {} {.}.wav