9 lines
136 B
Bash
Executable File
9 lines
136 B
Bash
Executable File
#!/bin/bash
|
|
|
|
for yaml_file in $(ls *.yaml) ; do
|
|
echo "Converting $yaml_file ..."
|
|
../ExecutionPlanGenerator.py $yaml_file
|
|
done
|
|
|
|
|