remove m4a2wav

This commit is contained in:
joachimschmidt557 2020-03-13 18:41:53 +01:00
parent 2fb4263bf5
commit 86583c46ae

23
m4a2wav
View file

@ -1,23 +0,0 @@
#!/bin/sh
usage() {
cat <<EOF
m4a2wav
Usage:
m4a2wav
Converts all m4a files in the current directory to
wav format. Requires ffmpeg.
EOF
}
case "$@" in
--help)
usage
exit 1
;;
*)
fd -e m4a -x ffmpeg -i '{}' '{.}'.wav
;;
esac