#!/bin/csh
#
# Showvolwav
#
# [gfc] Show the mono volume compensation that should be applied to a
# single .wav file
#
set vol = `sox $1 -e stat -v |& cat -` 
echo $1 volume should be adjusted by a factor of $vol
exit
