mirror of
https://github.com/CCExtractor/ccextractor.git
synced 2024-12-25 04:11:38 +00:00
7 lines
152 B
Plaintext
7 lines
152 B
Plaintext
|
#!/bin/bash
|
||
|
find /vagrant/First\ phase\ evaluation/ -name '*.ts' -exec sh -c '
|
||
|
for file do
|
||
|
python ../../api/api_testing.py $file
|
||
|
done
|
||
|
' sh {} +
|