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