tts/larynx.d/batch_play_wav.sh

7 lines
96 B
Bash

#! /bin/bash
for f in ./script.d/*.wav; do
read -p "enter to play <$f>"
afplay "$f"
done