#!/bin/bash

ext="aif"
for f in *.$ext
do
  time afconvert -v -f caff -d ima4 -c 1 "$f"
done

