logo [Gallery] [Linux] [Links] [Stuff]


#!/bin/bash
# assuming just .wav files in dir
# make list of filemnames and encode
# mp3's remove the wav's when finished
#
# Ian M. Hayhurst 2nd March 2004
#

ls -1 |cut -d . -f1 >>list-file
while read file
do
encode $file.wav $file.mp3
rm $file.wav
done <list-file

Photographs that appear on this site may not be reproduced in any form without the express permission of the author.
All photographs Copyright © 1999-2001 by Ian M. Hayhurst - All Rights Reserved.