4 lines
96 B
Text
4 lines
96 B
Text
|
for file in `find /mnt/dvd/ | grep .wav\$`; do
|
||
|
cat $file | oggenc - > `basename $file`
|
||
|
done
|