mirror of
https://github.com/GregorR/rnnoise-models
synced 2025-04-10 14:06:45 +00:00
12 lines
217 B
Bash
Executable File
12 lines
217 B
Bash
Executable File
#!/bin/sh
|
|
for i in cough laugh
|
|
do
|
|
touch $i.raw
|
|
SZ=`wc -c $i.raw | cut -d' ' -f1`
|
|
while [ "$SZ" -lt 300000000 ]
|
|
do
|
|
cat $i/*.raw >> $i.raw
|
|
SZ=`wc -c $i.raw | cut -d' ' -f1`
|
|
done
|
|
done
|