On Wed, Apr 9, 2025, at 4:27 PM, Gerhard Zintel wrote:
Maybe as a starting point (works in one folder):
#!/bin/bash
for i in *-L.wav
do
NAME=${i%%-L.wav}
echo "sox -M ${NAME}-L.wav ${NAME}-R.wav $NAME.wav"
done
that looks good, I'll play with find and what you've done here with the name
matching (along with other suggestions).
thank you for replying!
Josh