ccextractor/linux/first_phase_evaluation_script
2017-06-27 10:00:47 +00:00

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