mirror of
https://github.com/CCExtractor/ccextractor.git
synced 2024-12-25 12:23:59 +00:00
15 lines
367 B
Bash
Executable File
15 lines
367 B
Bash
Executable File
#!/bin/bash
|
|
#SAMPLES=($(find /vagrant/First\ phase\ evaluation/ -name '*.ts'))
|
|
#echo $SAMPLES
|
|
find /vagrant/First\ phase\ evaluation/ -name '*.ts' -exec sh -c '
|
|
for file do
|
|
python api_testing.py $file
|
|
done
|
|
' sh {} +
|
|
## now loop through the above array
|
|
#for i in "${SAMPLES[@]}"
|
|
#do
|
|
# echo "$i"
|
|
# or do whatever with individual element of the array
|
|
#done
|