Bash command help--cut

neidorff neidorff at gmail.com
Mon Sep 18 00:51:59 UTC 2006


Hi,

This baffles me, but should be very simple.

I have a directory with names of audio files.  I want to convert from one
audio format to another.  No problem there.

I want to create a script to do handle the change of file extension chores.
I came up with this:

#!/bin/bash
FILES=$(ls *.flac | cut -f1 -d\.)
for i in $FILES; do
echo converting: $i

flac -sd $i.flac -o  wav/$i.wav
done
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://listman.redhat.com/archives/fedora-list/attachments/20060917/e7420587/attachment-0001.htm>


More information about the fedora-list mailing list