6 lines
82 B
Bash
Executable File
6 lines
82 B
Bash
Executable File
#!/bin/bash
|
|
|
|
for JSON in $(find test_files -iregex .*json); do
|
|
./main $JSON
|
|
done
|