19 lines
280 B
Bash
Executable File
19 lines
280 B
Bash
Executable File
#!/bin/bash
|
|
|
|
. ./sumsel.conf
|
|
|
|
COUNTER=0
|
|
#SIM_EXAMPLE_FILE=./res/test.wav
|
|
#SIM_PREFIX=sums
|
|
#REC_DIR=./recordings
|
|
|
|
|
|
echo "Press [CTRL+C] to stop.."
|
|
while :
|
|
do
|
|
sleep 1
|
|
COUNTER=$[$COUNTER +1]
|
|
dst_fn="${REC_DIR}/${SIM_PREFIX}_${COUNTER}.wav"
|
|
cp ${SIM_EXAMPLE_FILE} ${dst_fn}
|
|
done
|