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