9 lines
117 B
Bash
Executable File
9 lines
117 B
Bash
Executable File
#! /bin/bash
|
|
|
|
for OUT in $( ls *.out ); do
|
|
MOL=${OUT%.*}
|
|
qp_convert_output_to_ezfio -o ${MOL} ${MOL}.out
|
|
done
|
|
|
|
|