#!/bin/csh
#
# Showvolwavs
#
# [gfc] Show the volume compensation that should be applied to a set of
# .wav files
#

foreach file (*.wav)
	set vol = `sox $file -e stat -v |& cat -`
	echo File $file volume should be adjusted by a factor of $vol
end

